523 lines
15 KiB
CMake
523 lines
15 KiB
CMake
cmake_minimum_required(VERSION 3.10)
|
|
project(p2pool)
|
|
|
|
include(cmake/standard.cmake)
|
|
enable_language(ASM)
|
|
|
|
message(STATUS "Build environment:
|
|
System processor: ${CMAKE_SYSTEM_PROCESSOR}
|
|
C compiler: ${CMAKE_C_COMPILER} (${CMAKE_C_COMPILER_ID})
|
|
CXX compiler: ${CMAKE_CXX_COMPILER} (${CMAKE_CXX_COMPILER_ID})
|
|
")
|
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
option(STATIC_BINARY "Build static binary" OFF)
|
|
option(STATIC_LIBS "Link libuv and libzmq statically" OFF)
|
|
option(WITH_RANDOMX "Include the RandomX library in the build. If this is turned off, p2pool will rely on monerod for verifying RandomX hashes" ON)
|
|
option(WITH_LTO "Use link-time compiler optimization (if linking fails for you, run cmake with -DWITH_LTO=OFF)" ON)
|
|
option(WITH_UPNP "Include UPnP support. If this is turned off, p2pool will not be able to configure port forwarding on UPnP-enabled routers." ON)
|
|
option(WITH_GRPC "Include gRPC support (Tari merge mining). Turn off to drop Tari dependency." OFF)
|
|
option(WITH_TLS "Include TLS support. If this is turned off, p2pool will not support Stratum TLS connections, and lack many other security features. It's recommended to keep it ON!" ON)
|
|
option(WITH_INDEXED_HASHES "Save memory used for storing transaction hashes and public keys (a bit slower block verification - use it only if you compile for a very low memory system)" OFF)
|
|
|
|
option(WITH_MERGE_MINING_DONATION "Merge mine donations to the author. This doesn't affect your hashrate or payouts in any way - only unused merge mining capacity will be utilised. If you merge mine yourself, your settings will take priority." ON)
|
|
|
|
option(DEV_TEST_SYNC "[Developer only] Sync test, stop p2pool after sync is complete" OFF)
|
|
option(DEV_WITH_TSAN "[Developer only] Compile with thread sanitizer" OFF)
|
|
option(DEV_WITH_MSAN "[Developer only] Compile with memory sanitizer" OFF)
|
|
option(DEV_WITH_UBSAN "[Developer only] Compile with undefined behavior sanitizer" OFF)
|
|
option(DEV_WITH_ASAN "[Developer only] Compile with address sanitizer" OFF)
|
|
option(DEV_CLANG_TIDY "[Developer only] Compile for clang-tidy" OFF)
|
|
option(DEV_TRACK_MEMORY "[Developer only] Track memory allocations" OFF)
|
|
option(DEV_DEBUG "[Developer only] Compile a debug build" OFF)
|
|
|
|
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT p2pool)
|
|
|
|
set(BUILD_TESTING OFF CACHE BOOL "CMake's CTest module")
|
|
|
|
if (CMAKE_CXX_COMPILER_ID MATCHES MSVC)
|
|
include(cmake/msvc_libs.cmake)
|
|
endif()
|
|
|
|
if (WITH_GRPC)
|
|
add_definitions(-DWITH_GRPC)
|
|
include(cmake/grpc.cmake)
|
|
|
|
add_subdirectory(external/src/Tari)
|
|
elseif (WITH_TLS)
|
|
add_subdirectory(cmake/ssl)
|
|
include_directories(external/src/grpc/third_party/boringssl-with-bazel/include)
|
|
endif()
|
|
|
|
if (WITH_RANDOMX)
|
|
add_definitions(-DWITH_RANDOMX)
|
|
add_subdirectory(external/src/RandomX)
|
|
set(LIBS ${LIBS} randomx)
|
|
endif()
|
|
|
|
if (WITH_UPNP)
|
|
add_definitions(-DWITH_UPNP)
|
|
add_subdirectory(external/src/miniupnp/miniupnpc)
|
|
set(LIBS ${LIBS} libminiupnpc-static)
|
|
endif()
|
|
|
|
if (WITH_MERGE_MINING_DONATION)
|
|
add_definitions(-DWITH_MERGE_MINING_DONATION)
|
|
endif()
|
|
|
|
if (DEV_TEST_SYNC)
|
|
add_definitions(-DDEV_TEST_SYNC)
|
|
endif()
|
|
|
|
if (DEV_WITH_TSAN)
|
|
add_definitions(-DDEV_WITH_TSAN)
|
|
endif()
|
|
|
|
if (DEV_WITH_MSAN)
|
|
add_definitions(-DDEV_WITH_MSAN)
|
|
endif()
|
|
|
|
if (DEV_WITH_UBSAN)
|
|
add_definitions(-DDEV_WITH_UBSAN)
|
|
endif()
|
|
|
|
if (DEV_WITH_ASAN)
|
|
add_definitions(-DDEV_WITH_ASAN)
|
|
endif()
|
|
|
|
if (DEV_CLANG_TIDY)
|
|
add_definitions(-DDEV_CLANG_TIDY)
|
|
endif()
|
|
|
|
if (DEV_TRACK_MEMORY)
|
|
add_definitions(-DDEV_TRACK_MEMORY)
|
|
endif()
|
|
|
|
if (DEV_DEBUG)
|
|
add_definitions(-DDEV_DEBUG)
|
|
endif()
|
|
|
|
include(cmake/flags.cmake)
|
|
|
|
set(HEADERS
|
|
external/src/crypto/sha256.h
|
|
external/src/cryptonote/crypto-ops.h
|
|
external/src/hardforks/hardforks.h
|
|
src/block_cache.h
|
|
src/block_template.h
|
|
src/common.h
|
|
src/console_commands.h
|
|
src/crypto.h
|
|
src/json_parsers.h
|
|
src/json_rpc_request.h
|
|
src/keccak.h
|
|
src/log.h
|
|
src/salvium_carrot.h
|
|
src/transcript_fixed.h
|
|
src/int-util.h
|
|
src/blake2b.h
|
|
src/memwipe.h
|
|
src/mempool.h
|
|
src/merge_mining_client.h
|
|
src/merge_mining_client_json_rpc.h
|
|
src/merkle.h
|
|
src/p2p_server.h
|
|
src/p2pool.h
|
|
src/p2pool_api.h
|
|
src/params.h
|
|
src/pool_block.h
|
|
src/pool_block_parser.inl
|
|
src/pow_hash.h
|
|
src/carrot_crypto.h
|
|
src/side_chain.h
|
|
src/stratum_server.h
|
|
src/tcp_server.h
|
|
src/util.h
|
|
src/uv_util.h
|
|
src/wallet.h
|
|
src/zmq_reader.h
|
|
)
|
|
|
|
set(SOURCES
|
|
external/src/crypto/sha256.c
|
|
external/src/cryptonote/crypto-ops-data.c
|
|
external/src/cryptonote/crypto-ops.c
|
|
external/src/cryptonote/fcmp_pp_crypto.cpp
|
|
external/mx25519/src/mx25519.c
|
|
external/mx25519/src/impl.c
|
|
external/mx25519/src/platform.c
|
|
external/mx25519/src/scalar.c
|
|
external/mx25519/src/cpu.c
|
|
external/mx25519/src/portable/scalarmult.c
|
|
)
|
|
|
|
if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "AMD64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "amd64")
|
|
list(APPEND SOURCES external/mx25519/src/amd64/scalarmult_gnu.S)
|
|
# Treat asm as C to keep clang/MinGW happy when emitting .obj
|
|
set_source_files_properties(external/mx25519/src/amd64/scalarmult_gnu.S PROPERTIES LANGUAGE C)
|
|
endif()
|
|
if(CMAKE_SYSTEM_PROCESSOR MATCHES "aarch64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "arm64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "armv8")
|
|
list(APPEND SOURCES external/mx25519/src/arm64/scalarmult.S)
|
|
set_source_files_properties(external/mx25519/src/arm64/scalarmult.S PROPERTIES LANGUAGE C)
|
|
endif()
|
|
|
|
list(APPEND SOURCES
|
|
external/src/hardforks/hardforks.cpp
|
|
src/block_cache.cpp
|
|
src/block_template.cpp
|
|
src/console_commands.cpp
|
|
src/crypto.cpp
|
|
src/carrot_crypto.cpp
|
|
src/salvium_carrot.cpp
|
|
src/blake2b.c
|
|
src/memwipe.c
|
|
src/json_rpc_request.cpp
|
|
src/keccak.cpp
|
|
src/log.cpp
|
|
src/main.cpp
|
|
src/memory_leak_debug.cpp
|
|
src/mempool.cpp
|
|
src/merge_mining_client.cpp
|
|
src/merge_mining_client_json_rpc.cpp
|
|
src/merkle.cpp
|
|
src/p2p_server.cpp
|
|
src/p2pool.cpp
|
|
src/p2pool_api.cpp
|
|
src/params.cpp
|
|
src/pool_block.cpp
|
|
src/pow_hash.cpp
|
|
src/side_chain.cpp
|
|
src/stratum_server.cpp
|
|
src/tcp_server.cpp
|
|
src/util.cpp
|
|
src/wallet.cpp
|
|
src/zmq_reader.cpp
|
|
)
|
|
|
|
if (AMD64)
|
|
set(SOURCES ${SOURCES} src/keccak_bmi.cpp)
|
|
if (CMAKE_C_COMPILER_ID MATCHES GNU OR CMAKE_C_COMPILER_ID MATCHES Clang)
|
|
set_source_files_properties(src/keccak_bmi.cpp PROPERTIES COMPILE_FLAGS "${CMAKE_CXX_FLAGS} -mbmi")
|
|
endif()
|
|
endif()
|
|
|
|
if (WITH_RANDOMX)
|
|
set(HEADERS ${HEADERS} src/miner.h)
|
|
set(SOURCES ${SOURCES} src/miner.cpp)
|
|
else()
|
|
set(HEADERS ${HEADERS} external/src/RandomX/src/cpu.hpp)
|
|
set(SOURCES ${SOURCES} external/src/RandomX/src/cpu.cpp)
|
|
endif()
|
|
|
|
if (WITH_GRPC AND NOT P2POOL_UNIT_TESTS)
|
|
set(HEADERS ${HEADERS} src/merge_mining_client_tari.h)
|
|
set(SOURCES ${SOURCES} src/merge_mining_client_tari.cpp)
|
|
endif()
|
|
|
|
if (WITH_TLS)
|
|
add_definitions(-DWITH_TLS)
|
|
|
|
set(HEADERS ${HEADERS} src/tls.h)
|
|
set(SOURCES ${SOURCES} src/tls.cpp)
|
|
endif()
|
|
|
|
if (WITH_INDEXED_HASHES)
|
|
add_compile_definitions(WITH_INDEXED_HASHES)
|
|
set(SOURCES ${SOURCES} src/indexed_hash.cpp)
|
|
endif()
|
|
|
|
source_group(TREE "${CMAKE_CURRENT_SOURCE_DIR}" PREFIX "Header Files" FILES ${HEADERS})
|
|
source_group(TREE "${CMAKE_CURRENT_SOURCE_DIR}" PREFIX "Source Files" FILES ${SOURCES})
|
|
|
|
include(CheckFunctionExists)
|
|
|
|
if (STATIC_BINARY)
|
|
add_definitions(-DCURL_STATICLIB)
|
|
|
|
check_function_exists(__nss_module_disable_loading HAVE_NSS_MODULE_DISABLE_LOADING)
|
|
|
|
if (HAVE_NSS_MODULE_DISABLE_LOADING)
|
|
add_definitions(-DHAVE_NSS_MODULE_DISABLE_LOADING)
|
|
endif()
|
|
endif()
|
|
|
|
if (NOT ((CMAKE_CXX_COMPILER_ID MATCHES MSVC) OR STATIC_BINARY OR STATIC_LIBS))
|
|
include(FindCURL)
|
|
endif()
|
|
|
|
if (CURL_INCLUDE_DIRS)
|
|
include_directories(${CURL_INCLUDE_DIRS})
|
|
else()
|
|
include_directories(external/src/curl/include)
|
|
endif()
|
|
|
|
if ((CMAKE_CXX_COMPILER_ID MATCHES MSVC) OR STATIC_BINARY OR STATIC_LIBS)
|
|
set(UV_INCLUDE_DIR external/src/libuv/include)
|
|
set(ZMQ_INCLUDE_DIR external/src/libzmq/include)
|
|
else()
|
|
find_path(UV_INCLUDE_DIR NAMES uv.h PATH_SUFFIXES "include")
|
|
find_path(ZMQ_INCLUDE_DIR NAMES zmq.h PATH_SUFFIXES "include")
|
|
endif()
|
|
|
|
include_directories(src)
|
|
include_directories(external/src)
|
|
include_directories(external/src/crypto)
|
|
include_directories(external/src/cryptonote)
|
|
include_directories(external/mx25519/include)
|
|
if(CMAKE_SYSTEM_PROCESSOR MATCHES "x86_64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "AMD64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "amd64")
|
|
include_directories(external/mx25519/src/amd64)
|
|
endif()
|
|
# We link mx25519 statically from sources, so make sure we don't request dllimport.
|
|
add_definitions(-DMX25519_STATIC)
|
|
include_directories(${UV_INCLUDE_DIR})
|
|
include_directories(external/src/cppzmq)
|
|
include_directories(${ZMQ_INCLUDE_DIR})
|
|
if (WITH_RANDOMX)
|
|
include_directories(external/src/RandomX/src)
|
|
endif()
|
|
include_directories(external/src/rapidjson/include)
|
|
include_directories(external/src/robin-hood-hashing/src/include)
|
|
if (WITH_UPNP)
|
|
include_directories(external/src/miniupnp/miniupnpc/include)
|
|
endif()
|
|
|
|
if (WIN32)
|
|
set(LIBS ${LIBS} ws2_32 iphlpapi userenv psapi dnsapi dbghelp advapi32)
|
|
if (CMAKE_CXX_COMPILER_ID MATCHES GNU)
|
|
set(LIBS ${LIBS} bcrypt)
|
|
endif()
|
|
add_definitions(-DCURL_STATICLIB)
|
|
add_definitions(-DWIN32_LEAN_AND_MEAN)
|
|
add_definitions(-D_WIN32_WINNT=0x0600)
|
|
elseif (CMAKE_SYSTEM_NAME STREQUAL FreeBSD)
|
|
set(LIBS ${LIBS} pthread)
|
|
elseif (NOT APPLE)
|
|
set(LIBS ${LIBS} pthread)
|
|
endif()
|
|
|
|
if (CMAKE_CXX_COMPILER_ID MATCHES GNU OR CMAKE_CXX_COMPILER_ID MATCHES Clang)
|
|
find_library(ZMQ_LIBRARY_DEBUG NAMES zmq libzmq.a)
|
|
find_library(ZMQ_LIBRARY NAMES zmq libzmq.a)
|
|
find_library(UV_LIBRARY_DEBUG NAMES uv libuv.a)
|
|
find_library(UV_LIBRARY NAMES uv libuv.a)
|
|
if (WIN32)
|
|
find_library(CURL_LIBRARY_DEBUG NAMES libcurl-d.a PATHS "external/src/curl/lib" NO_DEFAULT_PATH)
|
|
find_library(CURL_LIBRARY NAMES libcurl.a PATHS "external/src/curl/lib" NO_DEFAULT_PATH)
|
|
else()
|
|
if (CURL_LIBRARIES)
|
|
set(CURL_LIBRARY_DEBUG ${CURL_LIBRARIES})
|
|
set(CURL_LIBRARY ${CURL_LIBRARIES})
|
|
else()
|
|
find_library(CURL_LIBRARY_DEBUG NAMES curl-d)
|
|
find_library(CURL_LIBRARY NAMES curl)
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
if(APPLE)
|
|
find_library(FOUNDATION_LIB Foundation)
|
|
find_library(CORE_FOUNDATION_LIB CoreFoundation)
|
|
find_library(SYSTEM_CONFIGURATION_LIB SystemConfiguration)
|
|
set(LIBS ${LIBS} ${FOUNDATION_LIB} ${CORE_FOUNDATION_LIB} ${SYSTEM_CONFIGURATION_LIB})
|
|
endif()
|
|
|
|
add_definitions(-DZMQ_STATIC)
|
|
|
|
include(CheckIncludeFile)
|
|
|
|
check_include_file(asm/hwcap.h HAVE_HWCAP)
|
|
if(HAVE_HWCAP)
|
|
add_definitions(-DHAVE_HWCAP)
|
|
endif()
|
|
|
|
include(CheckCXXSourceCompiles)
|
|
|
|
check_cxx_source_compiles("int main(){ return __builtin_clzll(1);}" HAVE_BUILTIN_CLZLL)
|
|
check_cxx_source_compiles("#include <intrin.h>\n#pragma intrinsic(_BitScanReverse64)\nint main(){unsigned long r;_BitScanReverse64(&r,1);return static_cast<int>(r);}" HAVE_BITSCANREVERSE64)
|
|
check_cxx_source_compiles("#include <sched.h>\nint main(){sched_param param;return sched_setscheduler(0, SCHED_IDLE, ¶m);}" HAVE_SCHED)
|
|
|
|
include(CheckCSourceCompiles)
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES "resolv")
|
|
|
|
check_c_source_compiles("int main() { return 0; }" HAVE_RESOLV_LIB)
|
|
|
|
if (NOT HAVE_RESOLV_LIB)
|
|
set(CMAKE_REQUIRED_LIBRARIES)
|
|
endif()
|
|
|
|
check_c_source_compiles("
|
|
#include <sys/types.h>
|
|
#include <netinet/in.h>
|
|
#include <arpa/nameser.h>
|
|
#include <resolv.h>
|
|
#include <stdio.h>
|
|
#include <memory.h>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
if (argc < 2) {
|
|
return 1;
|
|
}
|
|
|
|
res_init();
|
|
|
|
uint8_t answer[4096];
|
|
const int anslen = res_query(argv[1], ns_c_in, ns_t_txt, answer, sizeof(answer));
|
|
|
|
if (anslen > (int) sizeof(answer)) {
|
|
return 1;
|
|
}
|
|
|
|
ns_msg handle;
|
|
ns_initparse(answer, anslen, &handle);
|
|
|
|
for (int rrnum = 0, n = ns_msg_count(handle, ns_s_an); rrnum < n; ++rrnum) {
|
|
ns_rr rr;
|
|
if ((ns_parserr(&handle, ns_s_an, rrnum, &rr) == 0) && (ns_rr_type(rr) == ns_t_txt)) {
|
|
for (const uint8_t* data = ns_rr_rdata(rr), *e = data + ns_rr_rdlen(rr); data < e;) {
|
|
const int k = *(data++);
|
|
if (k && (data + k <= e)) {
|
|
char buf[256];
|
|
memcpy(buf, data, k);
|
|
buf[k] = 0;
|
|
puts(buf);
|
|
}
|
|
data += k;
|
|
}
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}" HAVE_RES_QUERY)
|
|
|
|
check_c_source_compiles("
|
|
#define _GNU_SOURCE
|
|
#include <pthread.h>
|
|
|
|
int main()
|
|
{
|
|
pthread_setname_np(pthread_self(), \"Main\");
|
|
return 0;
|
|
}" HAVE_PTHREAD_SETNAME_NP)
|
|
|
|
set(CMAKE_REQUIRED_LIBRARIES)
|
|
|
|
if (HAVE_BUILTIN_CLZLL)
|
|
add_definitions(-DHAVE_BUILTIN_CLZLL)
|
|
endif()
|
|
|
|
if (HAVE_BITSCANREVERSE64)
|
|
add_definitions(-DHAVE_BITSCANREVERSE64)
|
|
endif()
|
|
|
|
if (HAVE_SCHED)
|
|
add_definitions(-DHAVE_SCHED)
|
|
endif()
|
|
|
|
if (HAVE_RES_QUERY)
|
|
add_definitions(-DHAVE_RES_QUERY)
|
|
if (HAVE_RESOLV_LIB)
|
|
set(LIBS ${LIBS} resolv)
|
|
endif()
|
|
endif()
|
|
|
|
if (HAVE_PTHREAD_SETNAME_NP)
|
|
add_definitions(-DHAVE_PTHREAD_SETNAME_NP)
|
|
endif()
|
|
|
|
check_c_source_compiles("#include <gnu/libc-version.h>\nint main() { return (gnu_get_libc_version() && gnu_get_libc_release()) ? 0 : 1; }" HAVE_GLIBC)
|
|
|
|
if (HAVE_GLIBC)
|
|
add_definitions(-DHAVE_GLIBC)
|
|
endif()
|
|
|
|
add_definitions("-DRAPIDJSON_PARSE_DEFAULT_FLAGS=kParseTrailingCommasFlag")
|
|
|
|
if (WIN32 AND (CMAKE_BUILD_TYPE STREQUAL "Release"))
|
|
add_definitions(-DNDEBUG)
|
|
endif()
|
|
|
|
include(cmake/git.cmake)
|
|
|
|
add_executable(${CMAKE_PROJECT_NAME} ${HEADERS} ${SOURCES})
|
|
|
|
if (STATIC_BINARY OR STATIC_LIBS)
|
|
if ((CMAKE_BUILD_TYPE STREQUAL "Release") AND (NOT (DEV_WITH_TSAN OR DEV_WITH_MSAN OR DEV_WITH_UBSAN OR DEV_WITH_ASAN)))
|
|
if (WIN32)
|
|
add_custom_command(TARGET ${CMAKE_PROJECT_NAME} POST_BUILD COMMAND ${CMAKE_STRIP} "${CMAKE_PROJECT_NAME}.exe")
|
|
else()
|
|
add_custom_command(TARGET ${CMAKE_PROJECT_NAME} POST_BUILD COMMAND ${CMAKE_STRIP} ${CMAKE_PROJECT_NAME})
|
|
endif()
|
|
endif()
|
|
|
|
set(STATIC_LIBS "")
|
|
|
|
if (WITH_RANDOMX)
|
|
set(STATIC_LIBS randomx)
|
|
endif()
|
|
|
|
if (WITH_UPNP)
|
|
set(STATIC_LIBS ${STATIC_LIBS} libminiupnpc-static)
|
|
endif()
|
|
|
|
if (WIN32)
|
|
set(STATIC_LIBS ${STATIC_LIBS} ws2_32 iphlpapi userenv psapi dnsapi dbghelp)
|
|
if ((CMAKE_CXX_COMPILER_ID MATCHES GNU) OR (CMAKE_CXX_COMPILER_ID MATCHES Clang))
|
|
# MinGW/Clang needs C++ runtime and winpthread explicitly when doing static link
|
|
set(STATIC_LIBS ${STATIC_LIBS} bcrypt pthread stdc++ winpthread)
|
|
endif()
|
|
elseif (CMAKE_SYSTEM_NAME STREQUAL FreeBSD)
|
|
set(STATIC_LIBS ${STATIC_LIBS} pthread)
|
|
elseif (APPLE)
|
|
find_library(FOUNDATION_LIB Foundation)
|
|
find_library(CORE_FOUNDATION_LIB CoreFoundation)
|
|
find_library(SYSTEM_CONFIGURATION_LIB SystemConfiguration)
|
|
set(STATIC_LIBS ${STATIC_LIBS} ${FOUNDATION_LIB} ${CORE_FOUNDATION_LIB} ${SYSTEM_CONFIGURATION_LIB})
|
|
else()
|
|
set(STATIC_LIBS ${STATIC_LIBS} pthread)
|
|
endif()
|
|
|
|
if (HAVE_RES_QUERY AND HAVE_RESOLV_LIB)
|
|
set(STATIC_LIBS ${STATIC_LIBS} resolv)
|
|
endif()
|
|
|
|
if (WITH_GRPC)
|
|
set(STATIC_LIBS ${STATIC_LIBS} Tari_gRPC grpc grpc++ libprotobuf)
|
|
elseif(WITH_TLS)
|
|
set(STATIC_LIBS ${STATIC_LIBS} ssl crypto)
|
|
endif()
|
|
|
|
if ((CMAKE_CXX_COMPILER_ID MATCHES GNU) AND (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9))
|
|
set(STATIC_LIBS ${STATIC_LIBS} stdc++fs)
|
|
endif()
|
|
|
|
target_link_libraries(${CMAKE_PROJECT_NAME}
|
|
"${CMAKE_SOURCE_DIR}/external/src/libzmq/build/lib/libzmq.a"
|
|
"${CMAKE_SOURCE_DIR}/external/src/libuv/build/libuv.a"
|
|
debug "${CMAKE_SOURCE_DIR}/external/src/curl/lib/libcurl-d.a"
|
|
optimized "${CMAKE_SOURCE_DIR}/external/src/curl/lib/libcurl.a"
|
|
${STATIC_LIBS}
|
|
)
|
|
else()
|
|
if (WITH_GRPC)
|
|
set(LIBS ${LIBS} Tari_gRPC grpc grpc++ libprotobuf)
|
|
elseif(WITH_TLS)
|
|
set(LIBS ${LIBS} ssl crypto)
|
|
endif()
|
|
|
|
if ((CMAKE_CXX_COMPILER_ID MATCHES GNU) AND (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9))
|
|
set(LIBS ${LIBS} stdc++fs)
|
|
endif()
|
|
|
|
target_link_libraries(${CMAKE_PROJECT_NAME} debug ${ZMQ_LIBRARY_DEBUG} debug ${UV_LIBRARY_DEBUG} debug ${CURL_LIBRARY_DEBUG} optimized ${ZMQ_LIBRARY} optimized ${UV_LIBRARY} optimized ${CURL_LIBRARY} ${LIBS})
|
|
endif()
|
|
|
|
message(STATUS "Summary of build options:
|
|
C compiler: ${CMAKE_C_COMPILER} (${CMAKE_C_COMPILER_ID})
|
|
CXX compiler: ${CMAKE_CXX_COMPILER} (${CMAKE_CXX_COMPILER_ID})
|
|
C_FLAGS: ${CMAKE_C_FLAGS}
|
|
CXX_FLAGS: ${CMAKE_CXX_FLAGS}
|
|
")
|