]> git.stg.codes - stg.git/blobdiff - CMakeLists.txt
Disable cppcheck for foreign libs by default.
[stg.git] / CMakeLists.txt
index c9b784978b433e494f2dab7e68a04f9fc11ac691..6a3ff7499cbff3bb00a257dfa0171054178544bd 100644 (file)
@@ -4,14 +4,9 @@ project ( Stargazer )
 
 set ( CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules )
 
-if ( CMAKE_COMPILER_IS_GNUCC AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 6.5 )
-    message ( FATAL_ERROR "Require at least gcc-6.5" )
-endif( CMAKE_COMPILER_IS_GNUCC AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 6.5 )
-
 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
@@ -36,7 +31,6 @@ 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 )
 
 # Grouping
 option ( BUILD_ALL_MODS "Build all modules." OFF )
@@ -45,13 +39,15 @@ option ( BUILD_TESTS "Build tests." OFF )
 option ( BUILD_ALL "Build binaries, libraries and tests." OFF )
 option ( ENABLE_COVERAGE "Enable code coverage analysis." OFF )
 
+# CPPCheck-related
+option ( CPPCHECK_FOREIGN "Run cppcheck over foreign lib code" 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 )
@@ -76,10 +72,9 @@ if ( BUILD_RSCRIPTD OR BUILD_ALL_LIBS )
     set ( BUILD_LIB_SCRIPTEXECUTER ON )
 endif ( BUILD_RSCRIPTD OR BUILD_ALL_LIBS )
 
-if ( BUILD_RLM_STG OR BUILD_ALL_LIBS )
+if ( BUILD_ALL_LIBS )
     set ( BUILD_LIB_CRYPTO ON )
-    set ( BUILD_LIB_JSON ON )
-endif ( BUILD_RLM_STG OR BUILD_ALL_LIBS )
+endif ( BUILD_ALL_LIBS )
 
 if ( BUILD_STG OR BUILD_ALL_LIBS )
     set ( BUILD_LIB_CONFFILES ON )
@@ -95,28 +90,56 @@ if ( BUILD_ALL_MODS )
     set ( BUILD_MOD_STORE_POSTGRESQL ON )
     set ( BUILD_MOD_RPCCONFIG ON )
     set ( BUILD_MOD_CAP_PCAP 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 )
+    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 )
 
+if ( TIDY )
+    find_program( CLANG_TIDY_EXE NAMES "clang-tidy" DOC "Path to clang-tidy executable" )
+    if ( NOT CLANG_TIDY_EXE )
+        message( STATUS "clang-tidy not found." )
+    else ()
+        message( STATUS "clang-tidy found: ${CLANG_TIDY_EXE}" )
+        set( DO_CLANG_TIDY "${CLANG_TIDY_EXE}"
+             "-checks=-*,\
+clang-analyzer-*,\
+misc-*,\
+modernize-*,\
+performance-*,\
+portability-*,\
+readability-*,\
+bugprone-*,\
+-modernize-avoid-bind,\
+-modernize-use-trailing-return-type,\
+-readability-braces-around-statements, \
+-readability-magic-numbers, \
+-readability-identifier-length, \
+-bugprone-easily-swappable-parameters" )
+    endif ()
+endif ()
+
+if ( IWYU )
+    find_program( INCLUDE_WHAT_YOU_USE_EXE NAMES "include-what-you-use" DOC "Path to include-what-you-use executable" )
+    if ( NOT INCLUDE_WHAT_YOU_USE_EXE )
+        message( STATUS "include-what-you-use not found." )
+    else ()
+        message( STATUS "include-what-you-use found: ${INCLUDE_WHAT_YOU_USE_EXE}" )
+        set( DO_INCLUDE_WHAT_YOU_USE "${INCLUDE_WHAT_YOU_USE_EXE}" )
+    endif ()
+endif ()
+
 enable_language (CXX)
-set (CMAKE_CXX_STANDARD 14)
+set (CMAKE_CXX_STANDARD 17)
 set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -W -Wall -Wextra -Wshadow -Wno-long-long -Wold-style-cast -Wstrict-aliasing -pedantic")
 
 if ( CMAKE_COMPILER_IS_GNUCC )
@@ -144,38 +167,19 @@ elseif ( ${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" )
 elseif ( ${CMAKE_SYSTEM_NAME} STREQUAL "Darwin" )
     add_definitions ( -DDARWIN )
     if ( BUILD_LIB_IBPP )
-            add_definitions ( -DIBPP_DARWIN )
+        add_definitions ( -DIBPP_DARWIN )
     endif ( BUILD_LIB_IBPP )
 else ()
     message ( WARNING "Unsupported system: '${CMAKE_SYSTEM_NAME}'" )
 endif ()
 
 include_directories ( include )
+include_directories ( 3rdparty/jthread/source )
 
 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 )
+add_subdirectory ( projects )
 
 if ( BUILD_TESTS )
+    enable_testing ()
     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)