comparison CMakeLists.txt @ 1201:67fa43998a91 default tip @

misc: update copyright years
author David Demelier <markand@malikania.fr>
date Thu, 04 Jan 2024 10:39:43 +0100
parents efbe36bf020b
children
comparison
equal deleted inserted replaced
1200:efbe36bf020b 1201:67fa43998a91
1 # 1 #
2 # CMakeLists.txt -- CMake build system for irccd 2 # CMakeLists.txt -- CMake build system for irccd
3 # 3 #
4 # Copyright (c) 2013-2023 David Demelier <markand@malikania.fr> 4 # Copyright (c) 2013-2024 David Demelier <markand@malikania.fr>
5 # 5 #
6 # Permission to use, copy, modify, and/or distribute this software for any 6 # Permission to use, copy, modify, and/or distribute this software for any
7 # purpose with or without fee is hereby granted, provided that the above 7 # purpose with or without fee is hereby granted, provided that the above
8 # copyright notice and this permission notice appear in all copies. 8 # copyright notice and this permission notice appear in all copies.
9 # 9 #
61 option(IRCCD_WITH_MAN "Enable manual pages" On) 61 option(IRCCD_WITH_MAN "Enable manual pages" On)
62 option(IRCCD_WITH_PKGCONFIG "Enable installation of pkg-config file" On) 62 option(IRCCD_WITH_PKGCONFIG "Enable installation of pkg-config file" On)
63 option(IRCCD_WITH_SSL "Enable SSL (requires OpenSSL)" On) 63 option(IRCCD_WITH_SSL "Enable SSL (requires OpenSSL)" On)
64 option(IRCCD_WITH_TESTS "Enable unit tests" On) 64 option(IRCCD_WITH_TESTS "Enable unit tests" On)
65 65
66 set(IRCCD_MAN_DATE "August 3, 2023") 66 set(IRCCD_MAN_DATE "August 3, 2024")
67 set(IRCCD_WITH_UID "irccd" CACHE STRING "Default uid to run irccd as") 67 set(IRCCD_WITH_UID "irccd" CACHE STRING "Default uid to run irccd as")
68 set(IRCCD_WITH_GID "irccd" CACHE STRING "Default gid to run irccd as") 68 set(IRCCD_WITH_GID "irccd" CACHE STRING "Default gid to run irccd as")
69 set(IRCCD_WITH_PKGCONFIGDIR "${CMAKE_INSTALL_LIBDIR}/pkgconfig" 69 set(IRCCD_WITH_PKGCONFIGDIR "${CMAKE_INSTALL_LIBDIR}/pkgconfig"
70 CACHE STRING "Directory for pkg-config files") 70 CACHE STRING "Directory for pkg-config files")
71 71