X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/8c6fa3fbaccc22127280bf77a48fab5a3ee0716e..46b0747592074017ff0ea4b33d4a7194235886e5:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..0872ec22 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,181 @@ +cmake_minimum_required (VERSION 3.1) + +set ( CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules ) + +option ( BUILD_STG "Build Stargazer server." OFF ) +option ( BUILD_SGCONF "Build SGConf client." OFF ) +option ( BUILD_RSCRIPTD "Build RScriptD server." OFF ) +option ( BUILD_RLM_STG "Build rlm_stg FreeRADIUS module." OFF ) +option ( BUILD_SGAUTH "Build SGAuth client." OFF ) + +# General modules +option ( BUILD_MOD_AO "Build AlwaysOnline STG module." ON ) +option ( BUILD_MOD_IA "Buils InetAccess STG module." ON ) +option ( BUILD_MOD_SGCONFIG "Build SGConfig STG module." ON ) +option ( BUILD_MOD_PING "Build Ping STG module." ON ) +option ( BUILD_MOD_RSCRYPT "Build RScrypt STG module." ON ) +option ( BUILD_MOD_SMUX "Buils SMUX STG module." ON ) +option ( BUILD_MOD_STORE_FILES "Build file store STG module." ON ) +option ( BUILD_MOD_CAP_NF "Build NetFlow capture STG module." ON ) + +# OS-specific modules +option ( BUILD_MOD_CAP_ETHER_LINUX "Build Linux Ethernet capture STG module." OFF ) +option ( BUILD_MOD_CAP_ETHER_FREEBSD "Build FreeBSD Ethernet capture STG module." OFF ) +option ( BUILD_MOD_CAP_DIVERT "Build FreeBSD divert-socket capture STG MODULE." OFF ) + +# Lib-specific modules +option ( BUILD_MOD_STORE_FIREBIRD "Build Firebird store STG module." OFF ) +option ( BUILD_MOD_STORE_POSTGRESQL "Build PostgreSQL store STG module." OFF ) +option ( BUILD_MOD_STORE_MYSQL "Build MySQL store STG module." OFF ) +option ( BUILD_MOD_RPCCONFIG "Build XML-RPC configuretion STG module." OFF ) +option ( BUILD_MOD_CAP_PCAP "Build PCap capture STG module." OFF ) +option ( BUILD_MOD_CAP_NFQUEUE "Build NFQueue capture STG module." OFF ) +option ( BUILD_MOD_RADIUS "Build rlm_stg backend STG module." OFF ) + +option ( BUILD_ALL_MODS "Build all modules." OFF ) +option ( BUILD_ALL_LIBS "Build all libraries." OFF ) +option ( BUILD_TESTS "Build tests." OFF ) +option ( BUILD_ALL "Build binaries, libraries and tests." OFF ) +option ( ENABLE_COVERAGE "Enable code coverage analysis." OFF ) + +if ( BUILD_ALL ) + set ( BUILD_ALL_MODS ON ) + set ( BUILD_ALL_LIBS ON ) + set ( BUILD_TESTS ON ) + set ( BUILD_SGAUTH ON ) + set ( BUILD_RSCRIPTD ON ) + set ( BUILD_RLM_STG ON ) + set ( BUILD_SGCONF ON ) + set ( BUILD_STG ON ) +endif ( BUILD_ALL ) + +set ( BUILD_LIB_COMMON ON ) + +if ( BUILD_SGAUTH OR BUILD_ALL_LIBS ) + set ( BUILD_LIB_CONFFILES ON ) + set ( BUILD_LIB_CRYPTO ON ) + set ( BUILD_LIB_IA ON ) +endif ( BUILD_SGAUTH OR BUILD_ALL_LIBS ) + +if ( BUILD_SGCONF OR BUILD_ALL_LIBS ) + set ( BUILD_LIB_CRYPTO ON ) + set ( BUILD_LIB_SRVCONF ON ) +endif ( BUILD_SGCONF OR BUILD_ALL_LIBS ) + +if ( BUILD_RSCRIPTD OR BUILD_ALL_LIBS ) + set ( BUILD_LIB_CONFFILES ON ) + set ( BUILD_LIB_CRYPTO ON ) + set ( BUILD_LIB_LOGGER ON ) + set ( BUILD_LIB_SCRIPTEXECUTER ON ) +endif ( BUILD_RSCRIPTD OR BUILD_ALL_LIBS ) + +if ( BUILD_RLM_STG OR BUILD_ALL_LIBS ) + set ( BUILD_LIB_CRYPTO ON ) + set ( BUILD_LIB_JSON ON ) +endif ( BUILD_RLM_STG OR BUILD_ALL_LIBS ) + +if ( BUILD_STG OR BUILD_ALL_LIBS ) + set ( BUILD_LIB_CONFFILES ON ) + set ( BUILD_LIB_CRYPTO ON ) + set ( BUILD_LIB_DOTCONFPP ON ) + set ( BUILD_LIB_LOGGER ON ) + set ( BUILD_LIB_SCRIPTEXECUTER ON ) + + # if ( BUILD_STG ) + # set ( BUILD_MOD_AO ON ) + # set ( BUILD_MOD_IA ON ) + # set ( BUILD_MOD_SGCONFIG ON ) + # set ( BUILD_MOD_PING ON ) + # set ( BUILD_MOD_RSCRYPT ON ) + # set ( BUILD_MOD_SMUX ON ) + # set ( BUILD_MOD_STORE_FILES ON ) + # set ( BUILD_MOD_CAP_NF ON ) + #endif ( BUILD_STG ) +endif ( BUILD_STG OR BUILD_ALL_LIBS ) + +if ( BUILD_ALL_MODS ) + set ( BUILD_MOD_STORE_FIREBIRD ON ) + set ( BUILD_MOD_STORE_MYSQL ON ) + set ( BUILD_MOD_STORE_POSTGRESQL ON ) + set ( BUILD_MOD_RPCCONFIG ON ) + set ( BUILD_MOD_CAP_PCAP ON ) + set ( BUILD_MOD_CAP_NFQUEUE ON ) + set ( BUILD_MOD_RADIUS ON ) +endif ( BUILD_ALL_MODS ) + +if ( BUILD_MOD_STORE_FIREBIRD OR BUILD_ALL_LIBS ) + set ( BUILD_LIB_IBPP ON ) +endif ( BUILD_MOD_STORE_FIREBIRD OR BUILD_ALL_LIBS ) + +if ( BUILD_MOD_RADIUS OR BUILD_ALL_LIBS ) + set ( BUILD_LIB_JSON ON ) + set ( BUILD_LIB_IBPP ON ) +endif ( BUILD_MOD_RADIUS OR BUILD_ALL_LIBS ) + +if ( BUILD_MOD_PING OR BUILD_ALL_LIBS ) + set ( BUILD_LIB_PINGER ON ) +endif ( BUILD_MOD_PING OR BUILD_ALL_LIBS ) + +if ( BUILD_MOD_SMUX OR BUILD_ALL_LIBS ) + set ( BUILD_LIB_SMUX ON ) +endif ( BUILD_MOD_SMUX OR BUILD_ALL_LIBS ) + +enable_language (CXX) +set (CMAKE_CXX_STANDARD 17) +set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -W -Wall -Wextra -Wshadow -Wlogical-op -Wuseless-cast -Wno-long-long -Wold-style-cast -Wstrict-aliasing -pedantic") + +if ( ${CMAKE_SYSTEM_NAME} STREQUAL "Linux" ) + add_definitions ( -DLINUX ) + set ( BUILD_MOD_CAP_ETHER_LINUX ON ) + if ( BUILD_LIB_IBPP ) + add_definitions ( -DIBPP_LINUX ) + endif ( BUILD_LIB_IBPP ) +elseif ( ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" ) + add_definitions ( -DFREE_BSD ) + set ( BUILD_MOD_CAP_ETHER_FREEBSD ON ) + set ( BUILD_MOD_CAP_DIVERT ON ) + if ( BUILD_LIB_IBPP ) + add_definitions ( -DIBPP_LINUX ) + message ( WARNING "IBPP does not support '${CMAKE_SYSTEM_NAME}'" ) + endif ( BUILD_LIB_IBPP ) +elseif ( ${CMAKE_SYSTEM_NAME} STREQUAL "Darwin" ) + add_definitions ( -DDARWIN ) + if ( BUILD_LIB_IBPP ) + add_definitions ( -DIBPP_DARWIN ) + endif ( BUILD_LIB_IBPP ) +else () + message ( WARNING "Unsupported system: '${CMAKE_SYSTEM_NAME}'" ) +endif () + +include_directories ( include ) + +#find_package ( OpenSSL 1.0.0 REQUIRED ) +#find_package ( Boost 1.66.0 REQUIRED COMPONENTS system unit_test_framework ) + +add_subdirectory ( libs ) + +if ( BUILD_RLM_STG ) + add_subdirectory ( rlm_stg ) +endif ( BUILD_RLM_STG ) + +if ( BUILD_RSCRIPTD ) + add_subdirectory ( rscriptd ) +endif ( BUILD_RSCRIPTD ) + +if ( BUILD_SGAUTH ) + add_subdirectory ( sgauth ) +endif ( BUILD_SGAUTH ) + +if ( BUILD_SGCONF ) + add_subdirectory ( sgconf ) +endif ( BUILD_SGCONF ) + +if ( BUILD_STG ) + add_subdirectory ( stargazer ) +endif ( BUILD_STG ) + +if ( BUILD_TESTS ) + add_subdirectory ( tests ) +endif ( BUILD_TESTS ) + +add_custom_target (cppcheck COMMAND cppcheck --enable=all --std=c++14 ${CMAKE_SOURCE_DIR}/rlm_stg ${CMAKE_SOURCE_DIR}/rscriptd ${CMAKE_SOURCE_DIR}/sgauth ${CMAKE_SOURCE_DIR}/sgconf ${CMAKE_SOURCE_DIR}/sgconv ${CMAKE_SOURCE_DIR}/stargazer)