changeset 1169:664f5fd27aea

cmake: bump minor version
author David Demelier <markand@malikania.fr>
date Sun, 06 Mar 2022 11:04:36 +0100
parents 5534d669b7af
children 16edffa8921b
files CMakeLists.txt
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Sun Mar 06 10:54:20 2022 +0100
+++ b/CMakeLists.txt	Sun Mar 06 11:04:36 2022 +0100
@@ -38,7 +38,7 @@
 	LANGUAGES C
 	DESCRIPTION "IRC Client Daemon"
 	HOMEPAGE_URL "http://projects.malikania.fr/irccd"
-	VERSION 4.0.1
+	VERSION 4.1.0
 )
 
 set_property(GLOBAL PROPERTY USE_FOLDERS On)
@@ -55,13 +55,13 @@
 include(CMakePackageConfigHelpers)
 include(GNUInstallDirs)
 
+option(IRCCD_WITH_EXAMPLES "Enable example files" On)
 option(IRCCD_WITH_HTTP "Enable HTTP support (requires libcurl)" On)
-option(IRCCD_WITH_EXAMPLES "Enable example files" On)
 option(IRCCD_WITH_JS "Enable Javascript" On)
 option(IRCCD_WITH_MAN "Enable manual pages" On)
+option(IRCCD_WITH_PKGCONFIG "Enable installation of pkg-config file" On)
 option(IRCCD_WITH_SSL "Enable SSL (requires OpenSSL)" On)
 option(IRCCD_WITH_TESTS "Enable unit tests" On)
-option(IRCCD_WITH_PKGCONFIG "Enable installation of pkg-config file" On)
 
 set(IRCCD_MAN_DATE "February 7, 2022")
 set(IRCCD_WITH_UID "irccd" CACHE STRING "Default uid to run irccd as")