mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2024-10-31 09:20:38 +00:00
324 lines
12 KiB
CMake
324 lines
12 KiB
CMake
cmake_minimum_required ( VERSION 2.8.12 )
|
|
# this addresses CMP0059 with CMake > 3.3 for PCH flags
|
|
cmake_policy( VERSION 2.8.12 )
|
|
project ( "i2pd" )
|
|
|
|
# configurale options
|
|
option(WITH_AESNI "Use AES-NI instructions set" OFF)
|
|
option(WITH_HARDENING "Use hardening compiler flags" OFF)
|
|
option(WITH_LIBRARY "Build library" ON)
|
|
option(WITH_BINARY "Build binary" ON)
|
|
option(WITH_STATIC "Static build" OFF)
|
|
option(WITH_UPNP "Include support for UPnP client" OFF)
|
|
option(WITH_PCH "Use precompiled header" OFF)
|
|
|
|
# paths
|
|
set ( CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake_modules" )
|
|
set ( CMAKE_SOURCE_DIR ".." )
|
|
|
|
set (LIBI2PD_SRC
|
|
"${CMAKE_SOURCE_DIR}/Crypto.cpp"
|
|
"${CMAKE_SOURCE_DIR}/Garlic.cpp"
|
|
"${CMAKE_SOURCE_DIR}/I2NPProtocol.cpp"
|
|
"${CMAKE_SOURCE_DIR}/Identity.cpp"
|
|
"${CMAKE_SOURCE_DIR}/LeaseSet.cpp"
|
|
"${CMAKE_SOURCE_DIR}/Log.cpp"
|
|
"${CMAKE_SOURCE_DIR}/NTCPSession.cpp"
|
|
"${CMAKE_SOURCE_DIR}/NetDbRequests.cpp"
|
|
"${CMAKE_SOURCE_DIR}/NetDb.cpp"
|
|
"${CMAKE_SOURCE_DIR}/Profiling.cpp"
|
|
"${CMAKE_SOURCE_DIR}/Reseed.cpp"
|
|
"${CMAKE_SOURCE_DIR}/RouterContext.cpp"
|
|
"${CMAKE_SOURCE_DIR}/RouterInfo.cpp"
|
|
"${CMAKE_SOURCE_DIR}/SSU.cpp"
|
|
"${CMAKE_SOURCE_DIR}/SSUData.cpp"
|
|
"${CMAKE_SOURCE_DIR}/SSUSession.cpp"
|
|
"${CMAKE_SOURCE_DIR}/Streaming.cpp"
|
|
"${CMAKE_SOURCE_DIR}/Destination.cpp"
|
|
"${CMAKE_SOURCE_DIR}/TransitTunnel.cpp"
|
|
"${CMAKE_SOURCE_DIR}/Tunnel.cpp"
|
|
"${CMAKE_SOURCE_DIR}/TunnelGateway.cpp"
|
|
"${CMAKE_SOURCE_DIR}/Transports.cpp"
|
|
"${CMAKE_SOURCE_DIR}/TunnelEndpoint.cpp"
|
|
"${CMAKE_SOURCE_DIR}/TunnelPool.cpp"
|
|
"${CMAKE_SOURCE_DIR}/Base.cpp"
|
|
"${CMAKE_SOURCE_DIR}/util.cpp"
|
|
"${CMAKE_SOURCE_DIR}/Datagram.cpp"
|
|
"${CMAKE_SOURCE_DIR}/Signature.cpp"
|
|
"${CMAKE_SOURCE_DIR}/api.cpp"
|
|
)
|
|
|
|
if (CMAKE_SYSTEM_NAME STREQUAL "Windows" OR MSYS)
|
|
list (APPEND LIBI2PD_SRC "${CMAKE_SOURCE_DIR}/I2PEndian.cpp")
|
|
endif ()
|
|
|
|
add_library(libi2pd ${LIBI2PD_SRC})
|
|
|
|
set (CLIENT_SRC
|
|
"${CMAKE_SOURCE_DIR}/AddressBook.cpp"
|
|
"${CMAKE_SOURCE_DIR}/BOB.cpp"
|
|
"${CMAKE_SOURCE_DIR}/ClientContext.cpp"
|
|
"${CMAKE_SOURCE_DIR}/I2PTunnel.cpp"
|
|
"${CMAKE_SOURCE_DIR}/I2PService.cpp"
|
|
"${CMAKE_SOURCE_DIR}/SAM.cpp"
|
|
"${CMAKE_SOURCE_DIR}/SOCKS.cpp"
|
|
"${CMAKE_SOURCE_DIR}/HTTPProxy.cpp"
|
|
)
|
|
|
|
add_library(i2pdclient ${CLIENT_SRC})
|
|
|
|
set (DAEMON_SRC
|
|
"${CMAKE_SOURCE_DIR}/Daemon.cpp"
|
|
"${CMAKE_SOURCE_DIR}/HTTPServer.cpp"
|
|
"${CMAKE_SOURCE_DIR}/I2PControl.cpp"
|
|
"${CMAKE_SOURCE_DIR}/i2pd.cpp"
|
|
"${CMAKE_SOURCE_DIR}/UPnP.cpp"
|
|
)
|
|
|
|
if (WITH_UPNP)
|
|
add_definitions(-DUSE_UPNP)
|
|
if (NOT MSVC AND NOT MSYS)
|
|
set(DL_LIB ${CMAKE_DL_LIBS})
|
|
endif ()
|
|
endif ()
|
|
|
|
# Default build is Debug
|
|
if (NOT CMAKE_BUILD_TYPE)
|
|
set(CMAKE_BUILD_TYPE Debug)
|
|
endif ()
|
|
|
|
# compiler flags customization (by vendor)
|
|
if (MSVC)
|
|
add_definitions( -D_WIN32_WINNT=_WIN32_WINNT_WINXP -DWIN32_LEAN_AND_MEAN -DNOMINMAX ) #-DOPENSSL_NO_SSL2 -DOPENSSL_USE_DEPRECATED
|
|
else()
|
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Winvalid-pch" )
|
|
set( CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -pedantic" )
|
|
# TODO: The following is incompatible with static build and enabled hardening for OpenWRT.
|
|
# Multiple definitions of __stack_chk_fail (libssp & libc)
|
|
set( CMAKE_CXX_FLAGS_MINSIZEREL "${CMAKE_CXX_FLAGS_MINSIZEREL} -flto -s -ffunction-sections -fdata-sections" )
|
|
set( CMAKE_EXE_LINKER_FLAGS_MINSIZEREL "-Wl,--gc-sections" ) # -flto is added from above
|
|
endif ()
|
|
|
|
# check for c++11 support
|
|
include(CheckCXXCompilerFlag)
|
|
CHECK_CXX_COMPILER_FLAG("-std=c++11" CXX11_SUPPORTED)
|
|
CHECK_CXX_COMPILER_FLAG("-std=c++0x" CXX0X_SUPPORTED)
|
|
if (CXX11_SUPPORTED)
|
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11" )
|
|
elseif (CXX0X_SUPPORTED) # gcc 4.6
|
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x" )
|
|
elseif (NOT MSVC)
|
|
message(SEND_ERROR "C++11 standart not seems to be supported by compiler. Too old version?")
|
|
endif ()
|
|
|
|
if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pipe")
|
|
if (WITH_HARDENING)
|
|
add_definitions( "-D_FORTIFY_SOURCE=2" )
|
|
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wformat -Wformat-security -Werror=format-security" )
|
|
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fstack-protector --param ssp-buffer-size=4" )
|
|
endif ()
|
|
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
|
|
# more tweaks
|
|
endif ()
|
|
|
|
# compiler flags customization (by system)
|
|
if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
|
list (APPEND DAEMON_SRC "${CMAKE_SOURCE_DIR}/DaemonLinux.cpp")
|
|
# "'sleep_for' is not a member of 'std::this_thread'" in gcc 4.7/4.8
|
|
add_definitions( "-D_GLIBCXX_USE_NANOSLEEP=1" )
|
|
elseif (CMAKE_SYSTEM_NAME STREQUAL "FreeBSD")
|
|
list (APPEND DAEMON_SRC "${CMAKE_SOURCE_DIR}/DaemonLinux.cpp")
|
|
# "'sleep_for' is not a member of 'std::this_thread'" in gcc 4.7/4.8
|
|
add_definitions( "-D_GLIBCXX_USE_NANOSLEEP=1" )
|
|
elseif (CMAKE_SYSTEM_NAME STREQUAL "Darwin")
|
|
list (APPEND DAEMON_SRC "${CMAKE_SOURCE_DIR}/DaemonLinux.cpp")
|
|
elseif (CMAKE_SYSTEM_NAME STREQUAL "OpenBSD")
|
|
list (APPEND DAEMON_SRC "${CMAKE_SOURCE_DIR}/DaemonLinux.cpp")
|
|
elseif (CMAKE_SYSTEM_NAME STREQUAL "Windows" OR MSYS)
|
|
list (APPEND DAEMON_SRC "${CMAKE_SOURCE_DIR}/DaemonWin32.cpp")
|
|
list (APPEND DAEMON_SRC "${CMAKE_SOURCE_DIR}/Win32/Win32Service.cpp")
|
|
list (APPEND DAEMON_SRC "${CMAKE_SOURCE_DIR}/Win32/Resource.rc")
|
|
endif ()
|
|
|
|
if (WITH_AESNI)
|
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -maes" )
|
|
add_definitions ( -DAESNI )
|
|
endif()
|
|
|
|
# libraries
|
|
# TODO: once CMake 3.1+ becomes mainstream, see e.g. http://stackoverflow.com/a/29871891/673826
|
|
# use imported Threads::Threads instead
|
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
|
find_package ( Threads REQUIRED )
|
|
if(THREADS_HAVE_PTHREAD_ARG) # compile time flag
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
|
|
endif()
|
|
|
|
if (WITH_STATIC)
|
|
set(Boost_USE_STATIC_LIBS ON)
|
|
set(Boost_USE_STATIC_RUNTIME ON)
|
|
if (WIN32 OR MSYS)
|
|
# http://www.cmake.org/Wiki/CMake_FAQ#Dynamic_Replace
|
|
# Note that you might need to rebuild Crypto++
|
|
foreach(flag_var
|
|
CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE
|
|
CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO)
|
|
if(${flag_var} MATCHES "/MD")
|
|
string(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}")
|
|
endif(${flag_var} MATCHES "/MD")
|
|
endforeach(flag_var)
|
|
else ()
|
|
set(CMAKE_FIND_LIBRARY_SUFFIXES .a)
|
|
endif ()
|
|
set(BUILD_SHARED_LIBS OFF)
|
|
if (${CMAKE_CXX_COMPILER} MATCHES ".*-openwrt-.*")
|
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread" )
|
|
# set( CMAKE_THREAD_LIBS_INIT "gcc_eh -Wl,--whole-archive -lpthread -Wl,--no-whole-archive" )
|
|
set( CMAKE_THREAD_LIBS_INIT "gcc_eh -Wl,-u,pthread_create,-u,pthread_once,-u,pthread_mutex_lock,-u,pthread_mutex_unlock,-u,pthread_join,-u,pthread_equal,-u,pthread_detach,-u,pthread_cond_wait,-u,pthread_cond_signal,-u,pthread_cond_destroy,-u,pthread_cond_broadcast,-u,pthread_cancel" )
|
|
endif ()
|
|
else()
|
|
if (NOT WIN32 AND NOT MSYS)
|
|
# TODO: Consider separate compilation for LIBI2PD_SRC for library.
|
|
# No need in -fPIC overhead for binary if not interested in library
|
|
# HINT: revert c266cff CMakeLists.txt: compilation speed up
|
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC" )
|
|
endif ()
|
|
add_definitions(-DBOOST_ALL_DYN_LINK)
|
|
endif ()
|
|
|
|
if (WITH_PCH)
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
|
|
add_library(stdafx STATIC "${CMAKE_SOURCE_DIR}/stdafx.cpp")
|
|
if(MSVC)
|
|
target_compile_options(stdafx PRIVATE /Ycstdafx.h /Zm155)
|
|
add_custom_command(TARGET stdafx POST_BUILD
|
|
COMMAND xcopy /y stdafx.dir\\$<CONFIG>\\*.pdb libi2pd.dir\\$<CONFIG>\\
|
|
COMMAND xcopy /y stdafx.dir\\$<CONFIG>\\*.pdb i2pdclient.dir\\$<CONFIG>\\
|
|
COMMAND xcopy /y stdafx.dir\\$<CONFIG>\\*.pdb i2pd.dir\\$<CONFIG>\\
|
|
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
|
|
)
|
|
target_compile_options(libi2pd PRIVATE /FIstdafx.h /Yustdafx.h /Zm155 "/Fp${CMAKE_BINARY_DIR}/stdafx.dir/$<CONFIG>/stdafx.pch")
|
|
target_compile_options(i2pdclient PRIVATE /FIstdafx.h /Yustdafx.h /Zm155 "/Fp${CMAKE_BINARY_DIR}/stdafx.dir/$<CONFIG>/stdafx.pch")
|
|
else()
|
|
string(TOUPPER ${CMAKE_BUILD_TYPE} BTU)
|
|
get_directory_property(DEFS DEFINITIONS)
|
|
string(REPLACE " " ";" FLAGS "${CMAKE_CXX_FLAGS} ${CMAKE_CXX_FLAGS_${BTU}} ${DEFS}")
|
|
add_custom_command(TARGET stdafx PRE_BUILD
|
|
COMMAND ${CMAKE_CXX_COMPILER} ${FLAGS} -c ${CMAKE_CURRENT_SOURCE_DIR}/../stdafx.h -o ${CMAKE_BINARY_DIR}/stdafx.h.gch
|
|
)
|
|
target_compile_options(libi2pd PRIVATE -include stdafx.h)
|
|
target_compile_options(i2pdclient PRIVATE -include stdafx.h)
|
|
endif()
|
|
target_link_libraries(libi2pd stdafx)
|
|
endif()
|
|
|
|
target_link_libraries(i2pdclient libi2pd)
|
|
|
|
find_package ( Boost COMPONENTS system filesystem regex program_options date_time thread chrono REQUIRED )
|
|
if(NOT DEFINED Boost_INCLUDE_DIRS)
|
|
message(SEND_ERROR "Boost is not found, or your boost version was bellow 1.46. Please download Boost!")
|
|
endif()
|
|
|
|
find_package ( OpenSSL REQUIRED )
|
|
if(NOT DEFINED OPENSSL_INCLUDE_DIR)
|
|
message(SEND_ERROR "Could not find OpenSSL. Please download and install it first!")
|
|
endif()
|
|
|
|
find_package ( MiniUPnPc )
|
|
if (MINIUPNPC_FOUND)
|
|
include_directories( ${MINIUPNPC_INCLUDE_DIR} )
|
|
else ()
|
|
set(WITH_UPNP OFF)
|
|
endif()
|
|
|
|
find_package ( ZLIB )
|
|
if (NOT ZLIB_FOUND )
|
|
# We are probably on Windows
|
|
include( ExternalProject )
|
|
ExternalProject_Add(zlib-project
|
|
URL http://zlib.net/zlib-1.2.8.tar.gz
|
|
URL_MD5 44d667c142d7cda120332623eab69f40
|
|
PREFIX ${CMAKE_CURRENT_BINARY_DIR}/zlib
|
|
# patch on Windows might be found in C:/Program Files/Git/usr/bin
|
|
PATCH_COMMAND patch -p0 < ${CMAKE_CURRENT_SOURCE_DIR}/cmake-zlib-static.patch
|
|
CMAKE_ARGS -DCMAKE_INSTALL_PREFIX:PATH=<INSTALL_DIR>
|
|
-DWITH_STATIC=${WITH_STATIC}
|
|
-DAMD64=ON -DASM686=ON "-DCMAKE_ASM_MASM_FLAGS=/W0 /safeseh"
|
|
)
|
|
if (WITH_PCH)
|
|
add_dependencies( stdafx zlib-project )
|
|
else ()
|
|
add_dependencies( libi2pd zlib-project )
|
|
endif ()
|
|
# ExternalProject_Get_Property(zlib-project install_dir)
|
|
set ( ZLIB_INCLUDE_DIR "${CMAKE_CURRENT_BINARY_DIR}/zlib/include" CACHE FILEPATH "zlib include dir" FORCE)
|
|
if (NOT WITH_STATIC)
|
|
set ( ZLIB_LIBRARY debug zlibd optimized zlib CACHE STRING "zlib libraries" FORCE)
|
|
endif ()
|
|
endif ()
|
|
if (WITH_STATIC AND (MSVC OR MSYS))
|
|
set ( ZLIB_LIBRARY debug zlibstaticd optimized zlibstatic CACHE STRING "zlib libraries" FORCE)
|
|
endif ()
|
|
link_directories(${CMAKE_CURRENT_BINARY_DIR}/zlib/lib ${ZLIB_ROOT}/lib)
|
|
|
|
# load includes
|
|
include_directories( ${Boost_INCLUDE_DIRS} ${OPENSSL_INCLUDE_DIR} ${ZLIB_INCLUDE_DIR} )
|
|
|
|
# show summary
|
|
message(STATUS "---------------------------------------")
|
|
message(STATUS "Build type : ${CMAKE_BUILD_TYPE}")
|
|
message(STATUS "Compiler vendor : ${CMAKE_CXX_COMPILER_ID}")
|
|
message(STATUS "Compiler version : ${CMAKE_CXX_COMPILER_VERSION}")
|
|
message(STATUS "Compiler path : ${CMAKE_CXX_COMPILER}")
|
|
message(STATUS "Install prefix: : ${CMAKE_INSTALL_PREFIX}")
|
|
message(STATUS "Options:")
|
|
message(STATUS " AESNI : ${WITH_AESNI}")
|
|
message(STATUS " HARDENING : ${WITH_HARDENING}")
|
|
message(STATUS " LIBRARY : ${WITH_LIBRARY}")
|
|
message(STATUS " BINARY : ${WITH_BINARY}")
|
|
message(STATUS " STATIC BUILD : ${WITH_STATIC}")
|
|
message(STATUS " UPnP : ${WITH_UPNP}")
|
|
message(STATUS " PCH : ${WITH_PCH}")
|
|
message(STATUS "---------------------------------------")
|
|
|
|
#Handle paths nicely
|
|
include(GNUInstallDirs)
|
|
|
|
if (WITH_BINARY)
|
|
add_executable ( "${PROJECT_NAME}" ${DAEMON_SRC} )
|
|
if(NOT MSVC) # FIXME: incremental linker file name (.ilk) collision for dll & exe
|
|
if (WITH_STATIC)
|
|
set_target_properties("${PROJECT_NAME}" PROPERTIES LINK_FLAGS "-static" )
|
|
endif ()
|
|
endif()
|
|
|
|
if (WITH_PCH)
|
|
if (MSVC)
|
|
target_compile_options("${PROJECT_NAME}" PRIVATE /FIstdafx.h /Yustdafx.h /Zm155 "/Fp${CMAKE_BINARY_DIR}/stdafx.dir/$<CONFIG>/stdafx.pch")
|
|
else()
|
|
target_compile_options("${PROJECT_NAME}" PRIVATE -include stdafx.h)
|
|
endif()
|
|
endif()
|
|
|
|
if (WITH_HARDENING AND CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
|
|
set_target_properties("${PROJECT_NAME}" PROPERTIES LINK_FLAGS "-z relro -z now" )
|
|
endif ()
|
|
|
|
# FindBoost pulls pthread for thread which is broken for static linking at least on Ubuntu 15.04
|
|
list(GET Boost_LIBRARIES -1 LAST_Boost_LIBRARIES)
|
|
if(${LAST_Boost_LIBRARIES} MATCHES ".*pthread.*")
|
|
list(REMOVE_AT Boost_LIBRARIES -1)
|
|
endif()
|
|
|
|
if (MSYS OR MINGW)
|
|
set (MINGW_EXTRA -lws2_32 -lmswsock -liphlpapi )
|
|
endif ()
|
|
target_link_libraries( "${PROJECT_NAME}" libi2pd i2pdclient ${DL_LIB} ${Boost_LIBRARIES} ${OPENSSL_LIBRARIES} ${ZLIB_LIBRARY} ${CMAKE_THREAD_LIBS_INIT} ${MINGW_EXTRA} )
|
|
|
|
install(TARGETS "${PROJECT_NAME}" RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} )
|
|
if (MSVC)
|
|
install(FILES $<TARGET_PDB_FILE:${PROJECT_NAME}> DESTINATION "bin" CONFIGURATIONS DEBUG)
|
|
endif ()
|
|
endif ()
|