2019-10-11 20:16:03 +00:00
cmake_minimum_required ( VERSION 3.5.1 ) # xenial's cmake version
2018-05-16 13:56:51 +00:00
2019-06-26 21:39:29 +00:00
find_program ( CCACHE_PROGRAM ccache )
if ( CCACHE_PROGRAM )
set_property ( GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}" )
endif ( )
2018-08-12 17:22:29 +00:00
set ( PROJECT_NAME lokinet )
2019-04-19 18:24:33 +00:00
project ( ${ PROJECT_NAME } C CXX )
2018-06-14 14:04:42 +00:00
2019-02-09 16:16:00 +00:00
# Core options
2019-11-05 11:45:49 +00:00
option ( USE_AVX2 "enable avx2 code" OFF )
option ( USE_NETNS "enable networking namespace support. Linux only" OFF )
option ( AMD_RYZEN_HACK "hack for AMD Ryzen FPU bug (support FMA3 and FMA4 in FPU, but does not show in CPUID)" OFF )
2019-11-05 12:11:05 +00:00
option ( NATIVE_BUILD "optimise for host system and FPU" ON )
2019-11-05 11:45:49 +00:00
option ( EMBEDDED_CFG "optimise for older hardware or embedded systems" OFF )
2019-04-19 18:36:32 +00:00
if ( NOT MSVC )
2019-09-18 20:19:13 +00:00
option ( STATIC_LINK "link statically against dependencies" OFF )
2019-11-05 11:45:49 +00:00
option ( STATIC_LINK_RUNTIME "link statically against compiler runtime, standard library and pthreads" OFF )
endif ( )
option ( SHADOW "use shadow testing framework. linux only" OFF )
option ( XSAN "use sanitiser, if your system has it" OFF )
option ( JEMALLOC "use jemalloc. Not required on BSD" OFF )
option ( DEBIAN "build for debian" OFF )
option ( TESTNET "testnet build" OFF )
option ( WITH_SHARED "build shared library" OFF )
option ( WITH_COVERAGE "generate coverage data" OFF )
2019-07-29 12:14:35 +00:00
option ( USE_SHELLHOOKS "enable shell hooks on compile time (dangerous)" OFF )
2019-03-19 00:22:37 +00:00
option ( WARNINGS_AS_ERRORS "treat all warnings as errors. turn off for development, on for release" OFF )
2019-11-05 11:45:49 +00:00
option ( TRACY_ROOT "include tracy profiler source" OFF )
2019-10-29 16:01:58 +00:00
option ( VENDOR_LIBSODIUM "use vendored libsodium" OFF )
2019-11-05 11:45:49 +00:00
option ( WITH_TESTS "build unit tests" ON )
2019-12-07 19:21:26 +00:00
option ( WITH_SYSTEMD "enable systemd integration for sd_notify" OFF )
2018-06-15 13:42:49 +00:00
2019-04-24 23:27:31 +00:00
include ( cmake/target_link_libraries_system.cmake )
2019-04-29 23:48:43 +00:00
include ( cmake/add_import_library.cmake )
include ( cmake/add_log_tag.cmake )
2019-08-29 13:59:04 +00:00
include ( cmake/libatomic.cmake )
2019-04-24 23:27:31 +00:00
2019-09-18 20:19:13 +00:00
if ( STATIC_LINK AND STATIC_LINK_RUNTIME )
message ( FATAL "Cannot set both STATIC_LINK and STATIC_LINK_RUNTIME" )
endif ( )
2019-07-13 13:05:00 +00:00
list ( APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake" )
2019-10-24 19:21:45 +00:00
# No in-source building
include ( MacroEnsureOutOfSourceBuild )
macro_ensure_out_of_source_build ( "${PROJECT_NAME} requires an out-of-source build. Create a build directory and run 'cmake ${CMAKE_SOURCE_DIR} [options]'." )
2019-09-30 08:59:34 +00:00
include ( cmake/basic_definitions.cmake )
2019-02-09 16:16:00 +00:00
2019-04-29 23:48:43 +00:00
if ( MSVC_VERSION )
2019-04-19 18:24:33 +00:00
enable_language ( ASM_MASM )
list ( APPEND CMAKE_ASM_MASM_SOURCE_FILE_EXTENSIONS s )
2019-07-17 18:57:15 +00:00
add_definitions ( -D_WIN32_WINNT=0x0600 -DNOMINMAX -DSODIUM_STATIC )
2019-04-19 18:24:33 +00:00
else ( )
enable_language ( ASM )
endif ( MSVC_VERSION )
2019-04-28 15:57:41 +00:00
include ( cmake/solaris.cmake )
2019-07-21 23:39:56 +00:00
include ( cmake/unix.cmake )
include ( cmake/win32.cmake )
2019-11-05 11:58:40 +00:00
# try detecting the target arch and set the flags needed here
if ( NOT WIN32 )
2019-11-05 12:01:14 +00:00
if ( IOS OR ANDROID )
2019-11-05 11:58:40 +00:00
set ( NON_PC_TARGET ON )
2019-11-05 12:01:14 +00:00
else ( )
include ( TargetArch )
target_architecture ( COMPILE_ARCH )
if ( COMPILE_ARCH MATCHES i386 OR COMPILE_ARCH MATCHES x86_64 )
set ( NON_PC_TARGET OFF )
else ( )
set ( NON_PC_TARGET ON )
endif ( )
2019-11-05 11:58:40 +00:00
endif ( )
endif ( )
2019-03-24 00:40:19 +00:00
2019-10-02 15:40:26 +00:00
if ( WIN32 )
set ( CMAKE_CXX_STANDARD 17 )
else ( )
set ( CMAKE_CXX_STANDARD 14 )
endif ( WIN32 )
2018-10-28 18:57:04 +00:00
set ( CMAKE_CXX_STANDARD_REQUIRED ON )
set ( CMAKE_CXX_EXTENSIONS OFF )
2019-08-02 09:27:27 +00:00
set ( CMAKE_C_STANDARD 99 )
set ( CMAKE_C_STANDARD_REQUIRED ON )
set ( CMAKE_C_EXTENSIONS OFF )
2018-06-15 13:42:49 +00:00
2019-10-17 04:14:03 +00:00
# this is messing with release builds
add_compile_options ( -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0 )
2018-12-12 04:51:22 +00:00
if ( NOT ${ CMAKE_SYSTEM_NAME } MATCHES "Linux" AND SHADOW )
2019-01-19 03:20:24 +00:00
message ( FATAL_ERROR "shadow-framework is Linux only" )
2018-12-12 04:51:22 +00:00
endif ( NOT ${ CMAKE_SYSTEM_NAME } MATCHES "Linux" AND SHADOW )
2018-12-03 14:39:30 +00:00
2019-05-18 15:34:03 +00:00
if ( NOT DEBIAN AND NOT MSVC_VERSION )
set ( OPTIMIZE_FLAGS -O3 )
set ( DEBUG_FLAGS -O0 -g3 )
endif ( )
2019-09-22 14:32:03 +00:00
if ( XSAN )
set ( DEBUG_FLAGS ${ DEBUG_FLAGS } "-fsanitize=${XSAN}" -fno-omit-frame-pointer )
2019-05-18 15:34:03 +00:00
set ( OPTIMIZE_FLAGS "-O0" )
2019-09-22 14:32:03 +00:00
endif ( XSAN )
2019-05-18 15:34:03 +00:00
if ( CMAKE_BUILD_TYPE MATCHES "[Dd][Ee][Bb][Uu][Gg]" )
set ( OPTIMIZE_FLAGS "" )
add_definitions ( -DLOKINET_DEBUG=1 )
set ( CRYPTO_FLAGS "" )
add_compile_options ( ${ DEBUG_FLAGS } )
link_libraries ( ${ DEBUG_FLAGS } )
endif ( CMAKE_BUILD_TYPE MATCHES "[Dd][Ee][Bb][Uu][Gg]" )
# Add non-386 target-specific options here
if ( NON_PC_TARGET )
add_definitions ( -DRPI )
set ( WITH_STATIC ON )
endif ( NON_PC_TARGET )
2019-07-12 13:06:59 +00:00
if ( WITH_SHELLHOOKS )
add_definitions ( -DENABLE_SHELLHOOKS )
endif ( WITH_SHELLHOOKS )
2019-08-26 23:10:48 +00:00
# Always build PIC
set ( CMAKE_POSITION_INDEPENDENT_CODE ON )
2019-10-07 10:08:47 +00:00
if ( TRACY_ROOT )
include_directories ( ${ TRACY_ROOT } )
add_definitions ( -DTRACY_ENABLE )
endif ( )
2019-03-02 02:01:04 +00:00
2019-03-24 00:54:25 +00:00
if ( CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
add_compile_options ( -Wno-unknown-warning-option )
endif ( )
2019-04-19 18:24:33 +00:00
if ( NOT MSVC_VERSION )
add_compile_options ( -Wall -Wextra -Wno-unknown-pragmas )
# vla are evil
add_compile_options ( -Wvla )
add_compile_options ( $< $<COMPILE_LANGUAGE:CXX > :-fpermissive> )
add_compile_options ( -Wno-unused-function -Wno-deprecated-declarations -Wno-unknown-pragmas )
endif ( )
2018-09-07 20:54:50 +00:00
2019-03-24 00:54:25 +00:00
if ( CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
2019-03-12 10:13:33 +00:00
add_compile_options ( -Wthread-safety )
2019-03-03 20:51:47 +00:00
endif ( )
2019-04-28 15:57:41 +00:00
include ( cmake/coverage.cmake )
2019-01-12 01:19:24 +00:00
2018-12-12 04:51:22 +00:00
# these vars are set by the cmake toolchain spec
2018-09-25 08:31:29 +00:00
if ( WOW64_CROSS_COMPILE OR WIN64_CROSS_COMPILE )
2019-04-29 23:48:43 +00:00
include ( cmake/cross_compile.cmake )
2018-12-12 04:51:22 +00:00
endif ( WOW64_CROSS_COMPILE OR WIN64_CROSS_COMPILE )
2018-11-19 13:39:35 +00:00
2018-08-09 13:55:51 +00:00
if ( DEBIAN )
2019-11-05 11:45:49 +00:00
add_definitions ( -DDEBIAN )
elseif ( WIN32 )
if ( USE_AVX2 )
set ( CRYPTO_FLAGS -march=haswell -mtune=native -mfpmath=sse )
else ( )
# Public binary releases
set ( CRYPTO_FLAGS -march=nocona -mtune=core2 -mfpmath=sse )
2019-10-30 20:55:12 +00:00
endif ( )
2019-02-09 16:16:00 +00:00
endif ( )
2018-12-12 04:51:22 +00:00
2019-03-05 22:05:00 +00:00
# only needed if using AVX2
if ( AMD_RYZEN_HACK AND USE_AVX2 )
set ( CRYPTO_FLAGS -march=native -mfpmath=sse -mavx -mavx2 -mfma )
message ( WARNING "This option may be removed in a future release. Contact your computer manufacturer for updated ROMs or microcode patches." )
endif ( AMD_RYZEN_HACK AND USE_AVX2 )
2019-11-05 12:24:05 +00:00
if ( NATIVE_BUILD AND NOT DEBIAN )
2019-11-05 11:45:49 +00:00
set ( CRYPTO_FLAGS -march=native -mtune=native )
2019-08-27 12:05:37 +00:00
endif ( )
2019-08-27 13:47:44 +00:00
if ( EMBEDDED_CFG )
message ( WARNING "This configuration is optimised for older hardware and/or constrained node operation, may result in poor performance on desktop systems" )
message ( WARNING "For deployment on such systems, all external code (currently, libuv) must also be compiled for the target!" )
set ( CRYPTO_FLAGS -march=i486 -mtune=i486 )
endif ( )
2019-11-05 12:11:05 +00:00
add_compile_options ( ${ OPTIMIZE_FLAGS } ${ CRYPTO_FLAGS } )
2019-11-05 12:26:44 +00:00
2018-10-28 18:57:04 +00:00
set ( CMAKE_THREAD_PREFER_PTHREAD TRUE )
set ( THREADS_PREFER_PTHREAD_FLAG TRUE )
find_package ( Threads REQUIRED )
2018-07-16 23:26:58 +00:00
2019-11-26 22:11:13 +00:00
if ( NOT IOS AND NOT ANDROID AND NOT WIN32 )
2019-11-26 21:58:20 +00:00
find_package ( CURL REQUIRED )
endif ( )
2019-09-18 20:19:13 +00:00
include ( cmake/static_link_runtime.cmake )
2019-08-17 11:33:07 +00:00
include ( cmake/static_link.cmake )
2018-06-15 13:42:49 +00:00
2018-11-19 13:39:35 +00:00
if ( USE_NETNS )
add_definitions ( -DNETNS=1 )
else ( )
add_definitions ( -DNETNS=0 )
2018-12-12 04:51:22 +00:00
endif ( USE_NETNS )
2018-06-06 17:02:57 +00:00
2018-10-21 14:19:49 +00:00
if ( TESTNET )
add_definitions ( -DTESTNET=1 )
2018-12-12 04:51:22 +00:00
endif ( TESTNET )
2018-10-21 14:19:49 +00:00
2018-06-06 12:59:15 +00:00
if ( SHADOW )
2019-04-28 15:57:41 +00:00
include ( cmake/shadow.cmake )
2018-12-12 04:51:22 +00:00
endif ( SHADOW )
2018-06-01 17:47:37 +00:00
2018-05-28 13:49:44 +00:00
if ( NOT GIT_VERSION )
2019-04-19 18:24:33 +00:00
exec_program ( "git" ${ CMAKE_CURRENT_SOURCE_DIR } ARGS "rev-parse --short HEAD" OUTPUT_VARIABLE GIT_VERSION_UNSTRIP )
string ( STRIP "${GIT_VERSION_UNSTRIP}" GIT_VERSION )
2018-12-12 04:51:22 +00:00
endif ( NOT GIT_VERSION )
2018-05-28 13:49:44 +00:00
2019-09-30 08:59:34 +00:00
string ( REGEX REPLACE "^fatal.*$" nogit GIT_VERSION_REAL "${GIT_VERSION}" )
2019-05-03 14:00:12 +00:00
add_definitions ( "-DGIT_REV=\" ${ GIT_VERSION_REAL } \"")
2019-11-05 12:28:08 +00:00
2018-09-20 19:24:13 +00:00
# HeapAlloc(2) on Windows was significantly revamped in 2009
# but the old algorithm isn't too bad either
# this is _the_ system allocator on BSD UNIX
# openbsd replaced it with a secure/randomised malloc not too
# long ago
2018-09-06 11:46:19 +00:00
if ( JEMALLOC )
set ( MALLOC_LIB jemalloc )
2018-12-12 04:51:22 +00:00
endif ( JEMALLOC )
2018-09-19 12:22:34 +00:00
2019-12-07 19:21:26 +00:00
if ( WITH_SYSTEMD )
pkg_check_modules ( SD REQUIRED libsystemd )
add_definitions ( -DWITH_SYSTEMD )
include_directories ( ${ SD_INCLUDE_DIRS } )
set ( SD_LIBS ${ SD_LDFLAGS } )
endif ( )
2019-11-05 12:28:08 +00:00
set ( ABSEIL_DIR vendor/abseil-cpp )
include_directories ( SYSTEM ${ ABSEIL_DIR } )
add_subdirectory ( vendor/cxxopts )
add_subdirectory ( vendor/nlohmann )
include_directories ( SYSTEM vendor/cxxopts/include )
2019-11-05 12:29:43 +00:00
if ( WITH_TESTS )
add_subdirectory ( vendor/gtest )
endif ( )
2019-11-05 12:28:08 +00:00
add_subdirectory ( ${ ABSEIL_DIR } )
2018-11-06 14:06:09 +00:00
if ( ANDROID )
2019-02-09 16:16:00 +00:00
list ( APPEND LIBS log )
2018-12-12 04:51:22 +00:00
add_definitions ( -DANDROID )
2019-04-08 14:27:55 +00:00
set ( ANDROID_PLATFORM_SRC android/ifaddrs.c )
2018-12-12 04:51:22 +00:00
endif ( ANDROID )
2018-11-19 13:39:35 +00:00
2019-12-07 19:21:26 +00:00
set ( LIBS ${ MALLOC_LIB } ${ FS_LIB } ${ LIBUV_LIBRARY } ${ SD_LIBS } )
2019-09-03 15:56:56 +00:00
if ( TRACY_ROOT )
list ( APPEND LIBS -ldl )
endif ( )
2019-06-24 15:51:58 +00:00
2019-02-09 16:16:00 +00:00
add_subdirectory ( crypto )
add_subdirectory ( llarp )
2019-04-29 23:48:43 +00:00
add_subdirectory ( libabyss )
2019-10-05 15:03:25 +00:00
add_subdirectory ( daemon )
2019-02-09 16:16:00 +00:00
2019-11-05 11:45:49 +00:00
if ( WITH_TESTS )
enable_testing ( )
endif ( )
2019-02-09 16:16:00 +00:00
2019-07-17 09:08:04 +00:00
if ( NOT SHADOW )
2019-11-05 11:45:49 +00:00
if ( WITH_TESTS )
add_subdirectory ( test )
endif ( )
2018-08-05 23:48:59 +00:00
if ( ANDROID )
2019-10-21 12:01:29 +00:00
add_subdirectory ( jni )
2018-12-12 04:51:22 +00:00
endif ( ANDROID )
2019-02-09 16:16:00 +00:00
endif ( )