2015-04-30 01:39:08 +02:00
|
|
|
project (uirc3 C)
|
2015-12-09 21:00:44 +01:00
|
|
|
cmake_minimum_required (VERSION 2.8.11)
|
2015-02-11 01:53:19 +01:00
|
|
|
|
2015-05-05 08:46:59 +02:00
|
|
|
# Options
|
|
|
|
option (WANT_READLINE "Use GNU Readline for the UI (better)" ON)
|
2015-05-05 08:58:44 +02:00
|
|
|
option (WANT_LIBEDIT "Use BSD libedit for the UI" OFF)
|
2015-05-05 08:46:59 +02:00
|
|
|
|
2015-02-11 01:53:19 +01:00
|
|
|
# Moar warnings
|
2017-07-03 06:44:15 +02:00
|
|
|
if ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUCC)
|
2015-02-11 01:53:19 +01:00
|
|
|
# -Wunused-function is pretty annoying here, as everything is static
|
2018-01-07 05:45:34 +01:00
|
|
|
set (wdisabled "-Wno-unused-function")
|
2017-06-22 22:39:39 +02:00
|
|
|
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c99 -Wall -Wextra ${wdisabled}")
|
2017-07-03 06:44:15 +02:00
|
|
|
endif ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU" OR CMAKE_COMPILER_IS_GNUCC)
|
2015-02-11 01:53:19 +01:00
|
|
|
|
|
|
|
# Version
|
2018-06-22 00:59:41 +02:00
|
|
|
set (project_version "0.9.6")
|
2016-03-06 03:51:29 +01:00
|
|
|
|
|
|
|
# Try to append commit ID if it follows a version tag. It might be nicer if
|
|
|
|
# we could also detect dirty worktrees but that's very hard to get right.
|
|
|
|
find_package (Git)
|
|
|
|
set (git_head "${PROJECT_SOURCE_DIR}/.git/HEAD")
|
2016-03-13 17:07:04 +01:00
|
|
|
if (GIT_FOUND AND EXISTS "${git_head}")
|
|
|
|
configure_file ("${git_head}" git-head.tag COPYONLY)
|
|
|
|
file (READ "${git_head}" git_head_content)
|
|
|
|
if (git_head_content MATCHES "^ref: ([^\r\n]+)")
|
|
|
|
set (git_ref "${PROJECT_SOURCE_DIR}/.git/${CMAKE_MATCH_1}")
|
|
|
|
if (EXISTS "${git_ref}")
|
|
|
|
configure_file ("${git_ref}" git-ref.tag COPYONLY)
|
|
|
|
endif (EXISTS "${git_ref}")
|
|
|
|
endif (git_head_content MATCHES "^ref: ([^\r\n]+)")
|
|
|
|
|
2016-03-06 03:51:29 +01:00
|
|
|
execute_process (COMMAND ${GIT_EXECUTABLE} describe --tags --match v*
|
|
|
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
|
|
|
|
RESULT_VARIABLE git_describe_result
|
|
|
|
OUTPUT_VARIABLE git_describe OUTPUT_STRIP_TRAILING_WHITESPACE)
|
|
|
|
if (NOT git_describe_result)
|
|
|
|
string (REGEX REPLACE "^v" "" project_version "${git_describe}")
|
|
|
|
endif (NOT git_describe_result)
|
2016-03-13 17:07:04 +01:00
|
|
|
endif (GIT_FOUND AND EXISTS "${git_head}")
|
2016-03-06 03:51:29 +01:00
|
|
|
|
|
|
|
# Dashes make filenames confusing and upset packaging software
|
|
|
|
string (REPLACE "-" "+" project_version_safe "${project_version}")
|
2015-02-11 01:53:19 +01:00
|
|
|
|
|
|
|
# Dependencies
|
2015-12-09 00:53:56 +01:00
|
|
|
set (CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/liberty/cmake)
|
|
|
|
include (AddThreads)
|
|
|
|
|
2015-02-11 01:53:19 +01:00
|
|
|
find_package (PkgConfig REQUIRED)
|
2016-03-10 22:27:09 +01:00
|
|
|
pkg_check_modules (libssl REQUIRED libssl libcrypto)
|
|
|
|
list (APPEND project_libraries ${libssl_LIBRARIES})
|
|
|
|
include_directories (${libssl_INCLUDE_DIRS})
|
|
|
|
link_directories (${libssl_LIBRARY_DIRS})
|
2015-02-11 01:53:19 +01:00
|
|
|
|
2015-07-23 09:53:16 +02:00
|
|
|
if ("${CMAKE_SYSTEM_NAME}" MATCHES "BSD")
|
2016-01-04 01:15:42 +01:00
|
|
|
include_directories (/usr/local/include)
|
|
|
|
link_directories (/usr/local/lib)
|
2015-07-30 18:11:29 +02:00
|
|
|
# Need this for SIGWINCH in FreeBSD and OpenBSD respectively;
|
|
|
|
# our POSIX version macros make it undefined
|
|
|
|
add_definitions (-D__BSD_VISIBLE=1 -D_BSD_SOURCE=1)
|
2015-07-23 09:53:16 +02:00
|
|
|
endif ("${CMAKE_SYSTEM_NAME}" MATCHES "BSD")
|
|
|
|
|
2016-03-10 22:27:09 +01:00
|
|
|
# -lrt is only for glibc < 2.17
|
|
|
|
# -liconv may or may not be a part of libc
|
|
|
|
foreach (extra iconv rt)
|
|
|
|
find_library (extra_lib_${extra} ${extra})
|
|
|
|
if (extra_lib_${extra})
|
2016-03-26 14:07:09 +01:00
|
|
|
list (APPEND project_libraries ${extra_lib_${extra}})
|
2016-03-10 22:27:09 +01:00
|
|
|
endif (extra_lib_${extra})
|
|
|
|
endforeach (extra)
|
|
|
|
|
2016-03-26 14:07:09 +01:00
|
|
|
include (CheckCSourceRuns)
|
|
|
|
set (CMAKE_REQUIRED_LIBRARIES ${project_libraries})
|
|
|
|
get_property (CMAKE_REQUIRED_INCLUDES
|
|
|
|
DIRECTORY "${PROJECT_SOURCE_DIR}" PROPERTY INCLUDE_DIRECTORIES)
|
|
|
|
CHECK_C_SOURCE_RUNS ("#include <iconv.h>
|
|
|
|
int main () { return iconv_open (\"UTF-8//TRANSLIT\", \"ISO-8859-1\")
|
|
|
|
== (iconv_t) -1; }" ICONV_ACCEPTS_TRANSLIT)
|
|
|
|
|
2016-03-10 22:27:09 +01:00
|
|
|
# Dependencies for degesch
|
|
|
|
pkg_check_modules (libffi REQUIRED libffi)
|
|
|
|
list (APPEND degesch_libraries ${libffi_LIBRARIES})
|
|
|
|
include_directories (${libffi_INCLUDE_DIRS})
|
|
|
|
link_directories (${libffi_LIBRARY_DIRS})
|
2015-02-11 01:53:19 +01:00
|
|
|
|
2015-11-19 15:45:32 +01:00
|
|
|
# FIXME: other Lua versions may be acceptable, don't know yet
|
2015-11-22 19:10:59 +01:00
|
|
|
pkg_search_module (lua lua53 lua5.3 lua-5.3 lua>=5.3)
|
2017-01-23 23:41:14 +01:00
|
|
|
option (WITH_LUA "Enable support for Lua plugins" ${lua_FOUND})
|
2015-11-19 15:45:32 +01:00
|
|
|
|
|
|
|
if (WITH_LUA)
|
|
|
|
if (NOT lua_FOUND)
|
|
|
|
message (FATAL_ERROR "Lua library not found")
|
|
|
|
endif (NOT lua_FOUND)
|
|
|
|
|
2016-03-10 22:27:09 +01:00
|
|
|
list (APPEND degesch_libraries ${lua_LIBRARIES})
|
2015-11-19 15:45:32 +01:00
|
|
|
include_directories (${lua_INCLUDE_DIRS})
|
|
|
|
link_directories (${lua_LIBRARY_DIRS})
|
|
|
|
endif (WITH_LUA)
|
|
|
|
|
2016-03-10 22:27:09 +01:00
|
|
|
find_package (Curses)
|
|
|
|
pkg_check_modules (ncursesw ncursesw)
|
2015-04-11 21:05:13 +02:00
|
|
|
if (ncursesw_FOUND)
|
2016-03-10 22:27:09 +01:00
|
|
|
list (APPEND degesch_libraries ${ncursesw_LIBRARIES})
|
2015-04-11 21:05:13 +02:00
|
|
|
include_directories (${ncursesw_INCLUDE_DIRS})
|
|
|
|
elseif (CURSES_FOUND)
|
2016-03-10 22:27:09 +01:00
|
|
|
list (APPEND degesch_libraries ${CURSES_LIBRARY})
|
2015-04-11 21:05:13 +02:00
|
|
|
include_directories (${CURSES_INCLUDE_DIR})
|
|
|
|
else (CURSES_FOUND)
|
|
|
|
message (SEND_ERROR "Curses not found")
|
|
|
|
endif (ncursesw_FOUND)
|
|
|
|
|
2015-05-05 08:58:44 +02:00
|
|
|
if ((WANT_READLINE AND WANT_LIBEDIT) OR (NOT WANT_READLINE AND NOT WANT_LIBEDIT))
|
2015-05-05 08:46:59 +02:00
|
|
|
message (SEND_ERROR "You have to choose either GNU Readline or libedit")
|
|
|
|
elseif (WANT_READLINE)
|
2015-07-30 18:11:29 +02:00
|
|
|
# OpenBSD's default readline is too old
|
|
|
|
if ("${CMAKE_SYSTEM_NAME}" MATCHES "OpenBSD")
|
|
|
|
include_directories (/usr/local/include/ereadline)
|
2016-03-10 22:27:09 +01:00
|
|
|
list (APPEND degesch_libraries ereadline)
|
2015-07-30 18:11:29 +02:00
|
|
|
else ("${CMAKE_SYSTEM_NAME}" MATCHES "OpenBSD")
|
2016-03-10 22:27:09 +01:00
|
|
|
list (APPEND degesch_libraries readline)
|
2015-07-30 18:11:29 +02:00
|
|
|
endif ("${CMAKE_SYSTEM_NAME}" MATCHES "OpenBSD")
|
2015-05-05 08:58:44 +02:00
|
|
|
elseif (WANT_LIBEDIT)
|
2015-05-05 08:46:59 +02:00
|
|
|
pkg_check_modules (libedit REQUIRED libedit)
|
2016-03-10 22:27:09 +01:00
|
|
|
list (APPEND degesch_libraries ${libedit_LIBRARIES})
|
2015-05-05 08:46:59 +02:00
|
|
|
include_directories (${libedit_INCLUDE_DIRS})
|
2015-05-05 08:58:44 +02:00
|
|
|
endif ((WANT_READLINE AND WANT_LIBEDIT) OR (NOT WANT_READLINE AND NOT WANT_LIBEDIT))
|
2015-05-05 08:46:59 +02:00
|
|
|
|
2015-02-11 01:53:19 +01:00
|
|
|
# Generate a configuration file
|
2015-11-19 15:45:32 +01:00
|
|
|
set (HAVE_READLINE "${WANT_READLINE}")
|
|
|
|
set (HAVE_EDITLINE "${WANT_LIBEDIT}")
|
|
|
|
set (HAVE_LUA "${WITH_LUA}")
|
2015-05-05 08:46:59 +02:00
|
|
|
|
2015-02-11 01:53:19 +01:00
|
|
|
include (GNUInstallDirs)
|
2015-11-21 22:47:52 +01:00
|
|
|
# ZyklonB is currently an odd duck but degesch follows normal XDG rules
|
|
|
|
set (zyklonb_plugin_dir ${CMAKE_INSTALL_LIBDIR}/zyklonb/plugins)
|
2015-02-11 01:53:19 +01:00
|
|
|
configure_file (${PROJECT_SOURCE_DIR}/config.h.in ${PROJECT_BINARY_DIR}/config.h)
|
|
|
|
include_directories (${PROJECT_SOURCE_DIR} ${PROJECT_BINARY_DIR})
|
|
|
|
|
|
|
|
# Project source files
|
2015-02-28 20:07:37 +01:00
|
|
|
set (common_sources)
|
2015-02-11 01:53:19 +01:00
|
|
|
set (common_headers ${PROJECT_BINARY_DIR}/config.h)
|
|
|
|
|
|
|
|
add_custom_command (OUTPUT kike-replies.c kike.msg
|
|
|
|
COMMAND ${PROJECT_SOURCE_DIR}/kike-gen-replies.sh
|
|
|
|
> kike-replies.c < ${PROJECT_SOURCE_DIR}/kike-replies
|
|
|
|
DEPENDS ${PROJECT_SOURCE_DIR}/kike-replies
|
|
|
|
COMMENT "Generating files from the list of server numerics")
|
|
|
|
set_source_files_properties (${PROJECT_BINARY_DIR}/kike-replies.c
|
|
|
|
PROPERTIES HEADER_FILE_ONLY TRUE)
|
|
|
|
|
|
|
|
# Build
|
|
|
|
add_executable (zyklonb zyklonb.c ${common_sources} ${common_headers})
|
|
|
|
target_link_libraries (zyklonb ${project_libraries})
|
2015-12-09 00:53:56 +01:00
|
|
|
add_threads (zyklonb)
|
2015-02-11 01:53:19 +01:00
|
|
|
|
2015-04-21 22:08:18 +02:00
|
|
|
add_executable (degesch degesch.c kike-replies.c
|
|
|
|
${common_sources} ${common_headers})
|
2016-03-10 22:27:09 +01:00
|
|
|
target_link_libraries (degesch ${project_libraries} ${degesch_libraries})
|
2015-12-09 00:53:56 +01:00
|
|
|
add_threads (degesch)
|
2015-04-11 21:05:13 +02:00
|
|
|
|
2015-02-11 01:53:19 +01:00
|
|
|
add_executable (kike kike.c kike-replies.c ${common_sources} ${common_headers})
|
|
|
|
target_link_libraries (kike ${project_libraries})
|
2015-12-09 00:53:56 +01:00
|
|
|
add_threads (kike)
|
2015-02-11 01:53:19 +01:00
|
|
|
|
2015-12-08 23:38:02 +01:00
|
|
|
# Tests
|
|
|
|
function (make_tests_for target_name)
|
|
|
|
get_target_property (sources ${target_name} SOURCES)
|
|
|
|
get_target_property (libraries ${target_name} LINK_LIBRARIES)
|
2015-12-09 00:53:56 +01:00
|
|
|
get_target_property (options ${target_name} COMPILE_OPTIONS)
|
2015-12-08 23:38:02 +01:00
|
|
|
|
|
|
|
set (test test-${target_name})
|
|
|
|
add_executable (${test} ${sources})
|
|
|
|
target_link_libraries (${test} ${libraries})
|
2015-12-09 00:53:56 +01:00
|
|
|
set_target_properties (${test} PROPERTIES
|
|
|
|
COMPILE_DEFINITIONS TESTING
|
2016-01-05 21:51:07 +01:00
|
|
|
COMPILE_OPTIONS "${options}")
|
2015-12-09 00:53:56 +01:00
|
|
|
|
2015-12-08 23:38:02 +01:00
|
|
|
add_test (NAME ${test} COMMAND ${test})
|
|
|
|
endfunction (make_tests_for)
|
|
|
|
|
|
|
|
include (CTest)
|
|
|
|
if (BUILD_TESTING)
|
|
|
|
make_tests_for (degesch)
|
2018-06-21 23:37:40 +02:00
|
|
|
add_test (NAME custom-static-analysis
|
|
|
|
COMMAND ${PROJECT_SOURCE_DIR}/test-static)
|
2015-12-08 23:38:02 +01:00
|
|
|
endif (BUILD_TESTING)
|
|
|
|
|
2015-11-13 09:05:25 +01:00
|
|
|
# Various clang-based diagnostics, loads of fake positives and spam
|
|
|
|
file (GLOB clang_tidy_sources *.c)
|
|
|
|
set (clang_tidy_checks misc-* readability-*
|
|
|
|
-readability-braces-around-statements
|
|
|
|
-readability-named-parameter)
|
|
|
|
string (REPLACE ";" "," clang_tidy_checks "${clang_tidy_checks}")
|
|
|
|
|
|
|
|
set (CMAKE_EXPORT_COMPILE_COMMANDS ON)
|
|
|
|
add_custom_target (clang-tidy
|
|
|
|
COMMAND clang-tidy -p ${PROJECT_BINARY_DIR} -checks=${clang_tidy_checks}
|
|
|
|
${clang_tidy_sources} 1>&2
|
|
|
|
USES_TERMINAL
|
|
|
|
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR})
|
|
|
|
|
2015-02-11 01:53:19 +01:00
|
|
|
# Installation
|
2015-04-11 21:05:13 +02:00
|
|
|
install (TARGETS zyklonb degesch kike DESTINATION ${CMAKE_INSTALL_BINDIR})
|
2015-02-11 01:53:19 +01:00
|
|
|
install (FILES LICENSE DESTINATION ${CMAKE_INSTALL_DOCDIR})
|
2015-11-21 22:47:52 +01:00
|
|
|
install (DIRECTORY plugins/zyklonb/
|
|
|
|
DESTINATION ${zyklonb_plugin_dir} USE_SOURCE_PERMISSIONS)
|
|
|
|
install (DIRECTORY plugins/degesch/
|
|
|
|
DESTINATION ${CMAKE_INSTALL_DATADIR}/degesch/plugins)
|
2015-02-11 01:53:19 +01:00
|
|
|
|
|
|
|
# Generate documentation from program help
|
|
|
|
find_program (HELP2MAN_EXECUTABLE help2man)
|
|
|
|
if (NOT HELP2MAN_EXECUTABLE)
|
|
|
|
message (FATAL_ERROR "help2man not found")
|
|
|
|
endif (NOT HELP2MAN_EXECUTABLE)
|
|
|
|
|
2015-04-11 21:05:13 +02:00
|
|
|
foreach (page zyklonb degesch kike)
|
2015-02-11 01:53:19 +01:00
|
|
|
set (page_output "${PROJECT_BINARY_DIR}/${page}.1")
|
|
|
|
list (APPEND project_MAN_PAGES "${page_output}")
|
|
|
|
add_custom_command (OUTPUT ${page_output}
|
2015-02-11 02:07:52 +01:00
|
|
|
COMMAND ${HELP2MAN_EXECUTABLE} -N
|
2015-02-11 01:53:19 +01:00
|
|
|
"${PROJECT_BINARY_DIR}/${page}" -o ${page_output}
|
|
|
|
DEPENDS ${page}
|
|
|
|
COMMENT "Generating man page for ${page}" VERBATIM)
|
|
|
|
endforeach (page)
|
|
|
|
|
|
|
|
add_custom_target (docs ALL DEPENDS ${project_MAN_PAGES})
|
|
|
|
|
|
|
|
foreach (page ${project_MAN_PAGES})
|
2016-03-10 20:26:35 +01:00
|
|
|
string (REGEX MATCH "\\.([0-9])$" manpage_suffix "${page}")
|
2015-02-11 01:53:19 +01:00
|
|
|
install (FILES "${page}"
|
|
|
|
DESTINATION "${CMAKE_INSTALL_MANDIR}/man${CMAKE_MATCH_1}")
|
|
|
|
endforeach (page)
|
|
|
|
|
|
|
|
# CPack
|
2015-04-30 01:39:08 +02:00
|
|
|
set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "Experimental IRC client, daemon and bot")
|
2016-03-06 03:51:29 +01:00
|
|
|
set (CPACK_PACKAGE_VERSION "${project_version_safe}")
|
2015-02-11 01:53:19 +01:00
|
|
|
set (CPACK_PACKAGE_VENDOR "Premysl Janouch")
|
2018-06-21 22:42:05 +02:00
|
|
|
set (CPACK_PACKAGE_CONTACT "Přemysl Janouch <p@janouch.name>")
|
2015-02-11 01:53:19 +01:00
|
|
|
set (CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENSE")
|
|
|
|
|
|
|
|
set (CPACK_GENERATOR "TGZ;ZIP")
|
|
|
|
set (CPACK_PACKAGE_FILE_NAME
|
2016-03-06 03:51:29 +01:00
|
|
|
"${PROJECT_NAME}-${project_version_safe}-${CMAKE_SYSTEM_NAME}-${CMAKE_SYSTEM_PROCESSOR}")
|
|
|
|
set (CPACK_PACKAGE_INSTALL_DIRECTORY "${PROJECT_NAME}-${project_version_safe}")
|
2015-02-11 01:53:19 +01:00
|
|
|
|
|
|
|
set (CPACK_SOURCE_GENERATOR "TGZ;ZIP")
|
|
|
|
set (CPACK_SOURCE_IGNORE_FILES "/\\\\.git;/build;/CMakeLists.txt.user")
|
2016-03-06 03:51:29 +01:00
|
|
|
set (CPACK_SOURCE_PACKAGE_FILE_NAME "${PROJECT_NAME}-${project_version_safe}")
|
2015-02-11 01:53:19 +01:00
|
|
|
|
|
|
|
set (CPACK_SET_DESTDIR TRUE)
|
|
|
|
include (CPack)
|