cmake_minimum_required(VERSION 2.8.10) set(PROJECT_NAME llarpd) project(${PROJECT_NAME}) macro(add_cflags) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${ARGN}") endmacro(add_cflags) macro(add_cxxflags) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${ARGN}") endmacro(add_cxxflags) include(CheckCXXCompilerFlag) CHECK_CXX_COMPILER_FLAG("-std=c++11" COMPILER_SUPPORTS_CXX11) if(COMPILER_SUPPORTS_CXX11) add_cxxflags("-std=c++11") else() message(ERROR "The compiler ${CMAKE_CXX_COMPILER} has no C++11 support. Please use a different C++ compiler.") endif() if(STATIC_LINK) set(STATIC_LINK_LIBS c) add_cflags("-static -Wl,--whole-archive -lpthread -Wl,--no-whole-archive") add_cxxflags("-static -Wl,--whole-archive -lpthread -Wl,--no-whole-archive") endif() if(SHADOW) set(WITH_STATIC OFF) else() set(WITH_STATIC ON) endif() set(DEBUG_FLAGS "-g") set(OPTIMIZE_FLAGS "-O0") if(ASAN) set(DEBUG_FLAGS "${DEBUG_FLAGS} -fsanitize=address -fno-omit-frame-pointer") set(OPTIMIZE_FLAGS "-O0") endif(ASAN) if(SHADOW) if("${SHADOW_ROOT}" STREQUAL "") set(SHADOW_ROOT "$ENV{HOME}/.shadow") endif("${SHADOW_ROOT}" STREQUAL "") if(EXISTS "${SHADOW_ROOT}") message(STATUS "SHADOW_ROOT = ${SHADOW_ROOT}") else() message(FATAL_ERROR "SHADOW_ROOT path does not exist: '${SHADOW_ROOT}'") endif() set(CMAKE_MODULE_PATH "${SHADOW_ROOT}/share/cmake/Modules") include_directories(${CMAKE_MODULE_PATH}) include(ShadowTools) add_cxxflags("-fno-inline -fno-strict-aliasing") add_cflags("-fno-inline -fno-strict-aliasing") add_definitions(-DTESTNET=true) add_definitions(-DSHADOW_TESTNET) include_directories(${SHADOW_ROOT}/include) endif() add_cflags("-Wall -Wno-deprecated-declarations ${OPTIMIZE_FLAGS}") add_cxxflags("-Wall -Wno-deprecated-declarations ${OPTIMIZE_FLAGS}") if(CMAKE_BUILD_TYPE MATCHES "[Dd][Ee][Bb][Uu][Gg]") add_cflags("${DEBUG_FLAGS}") add_cxxflags("${DEBUG_FLAGS}") endif() if(SHADOW) add_cflags("-fPIC") add_cxxflags("-fPIC") endif() if(NOT GIT_VERSION) exec_program("git" ${CMAKE_CURRENT_SOURCE_DIR} ARGS "rev-parse --short HEAD" OUTPUT_VARIABLE GIT_VERSION) add_definitions(-DGIT_REV="${GIT_VERSION}") endif() if(RELEASE_MOTTO) add_definitions(-DLLARP_RELEASE_MOTTO="${RELEASE_MOTTO}") endif() set(EXE llarpd) set(EXE_SRC daemon/main.c) if(SODIUM_INCLUDE_DIR) include_directories(${SODIUM_INCLUDE_DIR}) endif() if(SODIUM_LIBRARIES) set(SODIUM_LIB ${SODIUM_LIBRARIES}) else() set(SODIUM_LIB sodium) endif() set(LIBS ${SODIUM_LIB} pthread) set(LIB llarp) set(SHARED_LIB ${LIB}) set(STATIC_LIB ${LIB}-static) set(TT_ROOT vendor/libtuntap-master) add_definitions(-D${CMAKE_SYSTEM_NAME}) add_definitions(-DUNIX) if(UNIX) if(${CMAKE_SYSTEM_NAME} MATCHES "Linux") set(LIBTUNTAP_IMPL ${TT_ROOT}/tuntap-unix-linux.c) elseif (${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD") set(LIBTUNTAP_IMPL ${TT_ROOT}/tuntap-unix-openbsd.c ${TT_ROOT}/tuntap-unix-bsd.c) elseif (${CMAKE_SYSTEM_NAME} MATCHES "NetBSD") set(LIBTUNTAP_IMPL ${TT_ROOT}/tuntap-unix-netbsd.c ${TT_ROOT}/tuntap-unix-bsd.c) elseif (${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") set(LIBTUNTAP_IMPL ${TT_ROOT}/tuntap-unix-freebsd.c ${TT_ROOT}/tuntap-unix-bsd.c) elseif (${CMAKE_SYSTEM_NAME} MATCHES "Darwin") set(LIBTUNTAP_IMPL ${TT_ROOT}/tuntap-unix-darwin.c ${TT_ROOT}/tuntap-unix-bsd.c) elseif (${CMAKE_SYSTEM_NAME} MATCHES "DragonFly") set(LIBTUNTAP_IMPL ${TT_ROOT}/tuntap-unix-freebsd.c ${TT_ROOT}/tuntap-unix-bsd.c) else() message(FATAL_ERROR "Your operating system is not supported yet") endif() endif(UNIX) if(TUNTAP) set(LIBTUNTAP_SRC ${TT_ROOT}/tuntap.c ${TT_ROOT}/tuntap_log.c ${TT_ROOT}/tuntap-unix.c ${LIBTUNTAP_IMPL}) else() set(LIBTUNTAP_SRC "") endif() set(LIB_SRC llarp/address_info.cpp llarp/bencode.c llarp/buffer.cpp llarp/config.cpp llarp/context.cpp llarp/crypto_async.cpp llarp/crypto_libsodium.cpp llarp/dht.cpp llarp/encode.cpp llarp/encrypted_frame.cpp llarp/ev.cpp llarp/exit_info.cpp llarp/exit_route.c llarp/iwp_link.cpp llarp/logger.cpp llarp/link.c llarp/link_intro.cpp llarp/link_message.cpp llarp/logic.cpp llarp/mem.cpp llarp/net.cpp llarp/nodedb.cpp llarp/path.cpp llarp/pathbuilder.cpp llarp/pathset.cpp llarp/proofofwork.cpp llarp/relay_ack.cpp llarp/relay_commit.cpp llarp/relay_up_down.cpp llarp/router_contact.cpp llarp/router.cpp llarp/threadpool.cpp llarp/transit_hop.cpp llarp/testnet.c llarp/time.cpp llarp/timer.cpp llarp/api/create_session.cpp llarp/api/client.cpp llarp/api/message.cpp llarp/api/parser.cpp llarp/routing/dht_message.cpp llarp/routing/message_parser.cpp llarp/routing/path_confirm.cpp llarp/routing/path_latency.cpp llarp/routing/path_transfer.cpp vendor/cppbackport-master/lib/fs/rename.cpp vendor/cppbackport-master/lib/fs/filestatus.cpp vendor/cppbackport-master/lib/fs/filetype.cpp vendor/cppbackport-master/lib/fs/cleanpath.cpp vendor/cppbackport-master/lib/fs/perms.cpp vendor/cppbackport-master/lib/fs/equivalent.cpp vendor/cppbackport-master/lib/fs/current_path.cpp vendor/cppbackport-master/lib/fs/basename.cpp vendor/cppbackport-master/lib/fs/tempdir.cpp vendor/cppbackport-master/lib/fs/create_directory.cpp vendor/cppbackport-master/lib/fs/path.cpp vendor/cppbackport-master/lib/fs/remove.cpp vendor/cppbackport-master/lib/fs/diriter.cpp vendor/cppbackport-master/lib/fs/copyfile.cpp vendor/cppbackport-master/lib/fs/absolute.cpp vendor/cppbackport-master/lib/fs/direntry.cpp ${LIBTUNTAP_SRC} ) set(TEST_SRC test/main.cpp test/api_unittest.cpp test/dht_unittest.cpp test/encrypted_frame_unittest.cpp ) set(TEST_EXE testAll) set(GTEST_DIR test/gtest) set(CLIENT_EXE llarpc) set(CLIENT_SRC client/main.cpp ) # TODO: exclude this from includes and expose stuff properly for rcutil include_directories(llarp) include_directories(include) include_directories(vendor/cppbackport-master/lib) if(SHADOW) add_shadow_plugin(shadow-plugin-${SHARED_LIB} ${EXE_SRC} ${LIB_SRC}) target_link_libraries(shadow-plugin-${SHARED_LIB} ${LIBS}) install(TARGETS shadow-plugin-${SHARED_LIB} DESTINATION plugins) else() add_executable(rcutil daemon/rcutil.cpp) add_executable(${EXE} ${EXE_SRC}) add_executable(${CLIENT_EXE} ${CLIENT_SRC}) if(WITH_TESTS) enable_testing() add_subdirectory(${GTEST_DIR}) include_directories(${GTEST_DIR}/include ${GTEST_DIR}) add_executable(${TEST_EXE} ${TEST_SRC}) add_test(runAllTests ${TEST_EXE}) target_link_libraries(${TEST_EXE} ${STATIC_LINK_LIBS} gtest_main ${STATIC_LIB}) endif() if(WITH_STATIC) add_library(${STATIC_LIB} STATIC ${LIB_SRC}) target_link_libraries(${STATIC_LIB} ${LIBS}) if(NOT WITH_SHARED) target_link_libraries(rcutil ${STATIC_LINK_LIBS} ${STATIC_LIB}) target_link_libraries(${EXE} ${STATIC_LINK_LIBS} ${STATIC_LIB}) target_link_libraries(${CLIENT_EXE} ${STATIC_LINK_LIBS} ${STATIC_LIB}) endif() endif() if(WITH_SHARED) add_library(${SHARED_LIB} SHARED ${LIB_SRC}) target_link_libraries(${SHARED_LIB} ${LIBS}) if(NOT WITH_STATIC) target_link_libraries(rcutil ${SHARED_LIB}) target_link_libraries(${EXE} ${SHARED_LIB}) endif() endif() endif()