xmrig/CMakeLists.txt

288 lines
8 KiB
CMake
Raw Normal View History

cmake_minimum_required(VERSION 2.8)
2017-06-04 17:52:21 +00:00
project(xmrig)
2018-09-02 22:26:19 +00:00
option(WITH_LIBCPUID "Use Libcpuid" ON)
option(WITH_AEON "CryptoNight-Lite support" ON)
option(WITH_SUMO "CryptoNight-Heavy support" ON)
option(WITH_CN_PICO "CryptoNight-Pico support" ON)
option(WITH_CN_GPU "CryptoNight-GPU support" ON)
2018-09-02 22:26:19 +00:00
option(WITH_HTTPD "HTTP REST API" ON)
option(WITH_DEBUG_LOG "Enable debug log output" OFF)
2018-09-17 06:24:18 +00:00
option(WITH_TLS "Enable OpenSSL support" ON)
2018-09-23 17:16:33 +00:00
option(WITH_ASM "Enable ASM PoW implementations" ON)
2018-09-02 22:26:19 +00:00
option(BUILD_STATIC "Build static binary" OFF)
option(ARM_TARGET "Force use specific ARM target 8 or 7" 0)
2017-06-24 23:04:59 +00:00
include (CheckIncludeFile)
2017-11-06 00:11:35 +00:00
include (cmake/cpu.cmake)
2017-06-24 23:04:59 +00:00
2017-04-15 06:02:08 +00:00
set(HEADERS
2017-09-01 12:35:00 +00:00
src/api/NetworkState.h
2017-06-04 17:52:21 +00:00
src/App.h
2019-02-14 11:14:38 +00:00
src/base/io/Json.h
2019-02-14 21:59:20 +00:00
src/base/io/Watcher.h
src/base/kernel/interfaces/IConfigListener.h
src/base/kernel/interfaces/IWatcherListener.h
src/base/kernel/Entry.h
2019-02-14 22:42:46 +00:00
src/base/kernel/Process.h
src/base/tools/Arguments.h
2019-02-14 21:59:20 +00:00
src/base/tools/Handle.h
2018-11-05 17:50:28 +00:00
src/base/tools/String.h
2018-04-12 23:38:18 +00:00
src/common/config/CommonConfig.h
src/common/config/ConfigLoader.h
src/common/config/ConfigWatcher.h
src/common/Console.h
src/common/cpu/Cpu.h
2018-04-25 07:48:32 +00:00
src/common/crypto/Algorithm.h
2018-04-20 07:45:51 +00:00
src/common/crypto/keccak.h
2018-06-05 00:34:58 +00:00
src/common/interfaces/IClientListener.h
src/common/interfaces/IConfig.h
src/common/interfaces/IConfigCreator.h
src/common/interfaces/IConsoleListener.h
src/common/interfaces/IControllerListener.h
src/common/interfaces/ICpuInfo.h
2018-06-05 00:34:58 +00:00
src/common/interfaces/ILogBackend.h
src/common/interfaces/IStrategy.h
src/common/interfaces/IStrategyListener.h
2018-07-19 20:37:07 +00:00
src/common/log/BasicLog.h
2018-04-20 16:44:32 +00:00
src/common/log/ConsoleLog.h
src/common/log/FileLog.h
src/common/log/Log.h
src/common/net/Client.h
src/common/net/Id.h
2018-04-20 16:44:32 +00:00
src/common/net/Job.h
src/common/net/Pool.h
src/common/net/Storage.h
src/common/net/strategies/FailoverStrategy.h
src/common/net/strategies/SinglePoolStrategy.h
src/common/net/SubmitResult.h
2018-04-13 00:23:01 +00:00
src/common/Platform.h
2018-04-12 23:38:18 +00:00
src/common/utils/c_str.h
2018-04-15 04:08:47 +00:00
src/common/utils/mm_malloc.h
2018-04-13 00:00:51 +00:00
src/common/xmrig.h
src/core/ConfigLoader_platform.h
2018-03-27 07:01:38 +00:00
src/core/Controller.h
2017-06-11 12:32:15 +00:00
src/interfaces/IJobResultListener.h
src/interfaces/IThread.h
src/interfaces/IWorker.h
2017-06-09 12:09:21 +00:00
src/Mem.h
2017-06-11 07:58:46 +00:00
src/net/JobResult.h
2017-06-04 17:52:21 +00:00
src/net/Network.h
src/net/strategies/DonateStrategy.h
2017-06-07 22:16:45 +00:00
src/Summary.h
2017-06-12 13:19:07 +00:00
src/version.h
src/workers/CpuThread.h
src/workers/Handle.h
2017-06-15 18:00:25 +00:00
src/workers/Hashrate.h
src/workers/MultiWorker.h
src/workers/Worker.h
2017-06-10 06:41:08 +00:00
src/workers/Workers.h
2017-04-15 06:02:08 +00:00
)
2017-06-08 01:20:10 +00:00
set(HEADERS_CRYPTO
src/crypto/c_blake256.h
src/crypto/c_groestl.h
src/crypto/c_jh.h
src/crypto/c_skein.h
2017-06-08 06:47:25 +00:00
src/crypto/CryptoNight.h
2018-04-02 19:55:28 +00:00
src/crypto/CryptoNight_constants.h
2018-03-06 14:34:20 +00:00
src/crypto/CryptoNight_monero.h
src/crypto/CryptoNight_test.h
2017-06-08 01:20:10 +00:00
src/crypto/groestl_tables.h
src/crypto/hash.h
src/crypto/skein_port.h
2017-11-03 02:35:29 +00:00
src/crypto/soft_aes.h
2019-02-10 14:21:17 +00:00
src/crypto/asm/CryptonightR_template.h
2017-06-08 01:20:10 +00:00
)
2017-11-26 19:23:23 +00:00
if (XMRIG_ARM)
set(HEADERS_CRYPTO "${HEADERS_CRYPTO}" src/crypto/CryptoNight_arm.h)
2017-11-06 00:11:35 +00:00
else()
set(HEADERS_CRYPTO "${HEADERS_CRYPTO}" src/crypto/CryptoNight_x86.h)
endif()
2017-04-15 06:02:08 +00:00
set(SOURCES
2017-09-01 12:35:00 +00:00
src/api/NetworkState.cpp
2017-06-04 17:52:21 +00:00
src/App.cpp
2019-02-14 11:14:38 +00:00
src/base/io/Json.cpp
2019-02-14 21:59:20 +00:00
src/base/io/Watcher.cpp
src/base/kernel/Entry.cpp
2019-02-14 22:42:46 +00:00
src/base/kernel/Process.cpp
src/base/tools/Arguments.cpp
2019-02-14 21:59:20 +00:00
src/base/tools/Handle.cpp
2018-11-05 17:50:28 +00:00
src/base/tools/String.cpp
2018-04-12 23:38:18 +00:00
src/common/config/CommonConfig.cpp
src/common/config/ConfigLoader.cpp
src/common/config/ConfigWatcher.cpp
src/common/Console.cpp
2018-04-25 07:48:32 +00:00
src/common/crypto/Algorithm.cpp
2018-04-20 07:45:51 +00:00
src/common/crypto/keccak.cpp
2018-07-19 20:37:07 +00:00
src/common/log/BasicLog.cpp
2018-04-20 16:44:32 +00:00
src/common/log/ConsoleLog.cpp
src/common/log/FileLog.cpp
src/common/log/Log.cpp
src/common/net/Client.cpp
2018-04-20 16:44:32 +00:00
src/common/net/Job.cpp
src/common/net/Pool.cpp
src/common/net/strategies/FailoverStrategy.cpp
src/common/net/strategies/SinglePoolStrategy.cpp
src/common/net/SubmitResult.cpp
2018-04-13 00:23:01 +00:00
src/common/Platform.cpp
src/core/Config.cpp
2018-03-27 07:01:38 +00:00
src/core/Controller.cpp
2017-06-09 12:09:21 +00:00
src/Mem.cpp
2017-06-04 17:52:21 +00:00
src/net/Network.cpp
src/net/strategies/DonateStrategy.cpp
2017-06-07 22:16:45 +00:00
src/Summary.cpp
src/workers/CpuThread.cpp
src/workers/Handle.cpp
2017-06-15 18:00:25 +00:00
src/workers/Hashrate.cpp
src/workers/MultiWorker.cpp
src/workers/Worker.cpp
2017-06-10 06:41:08 +00:00
src/workers/Workers.cpp
2017-06-04 17:52:21 +00:00
src/xmrig.cpp
2017-04-15 06:02:08 +00:00
)
2017-06-08 01:20:10 +00:00
set(SOURCES_CRYPTO
src/crypto/c_groestl.c
src/crypto/c_blake256.c
src/crypto/c_jh.c
src/crypto/c_skein.c
2019-02-10 14:21:17 +00:00
src/crypto/CryptonightR_gen.cpp
2017-06-08 01:20:10 +00:00
)
2017-04-15 06:02:08 +00:00
if (WIN32)
2017-06-04 17:52:21 +00:00
set(SOURCES_OS
res/app.rc
2017-06-13 10:20:15 +00:00
src/App_win.cpp
2019-02-14 11:14:38 +00:00
src/base/io/Json_win.cpp
2018-04-13 00:23:01 +00:00
src/common/Platform_win.cpp
2017-06-09 12:09:21 +00:00
src/Mem_win.cpp
2017-06-04 17:52:21 +00:00
)
2017-06-14 18:33:20 +00:00
add_definitions(/DWIN32)
2017-06-04 17:52:21 +00:00
set(EXTRA_LIBS ws2_32 psapi iphlpapi userenv)
2017-06-14 16:13:02 +00:00
elseif (APPLE)
set(SOURCES_OS
src/App_unix.cpp
2019-02-14 11:14:38 +00:00
src/base/io/Json_unix.cpp
2018-04-13 00:23:01 +00:00
src/common/Platform_mac.cpp
2017-06-14 16:13:02 +00:00
src/Mem_unix.cpp
)
2017-04-15 06:02:08 +00:00
else()
2017-06-14 16:13:02 +00:00
set(SOURCES_OS
src/App_unix.cpp
2019-02-14 11:14:38 +00:00
src/base/io/Json_unix.cpp
2018-04-13 00:23:01 +00:00
src/common/Platform_unix.cpp
2017-06-14 16:13:02 +00:00
src/Mem_unix.cpp
)
2018-10-24 02:55:40 +00:00
if (CMAKE_SYSTEM_NAME STREQUAL FreeBSD)
set(EXTRA_LIBS kvm pthread)
2018-10-24 02:55:40 +00:00
else()
set(EXTRA_LIBS pthread rt dl)
endif()
endif()
if (CMAKE_SYSTEM_NAME MATCHES "Linux")
EXECUTE_PROCESS(COMMAND uname -o COMMAND tr -d '\n' OUTPUT_VARIABLE OPERATING_SYSTEM)
if (OPERATING_SYSTEM MATCHES "Android")
set(EXTRA_LIBS ${EXTRA_LIBS} log)
endif()
endif()
add_definitions(/D__STDC_FORMAT_MACROS)
add_definitions(/DUNICODE)
2017-04-15 06:02:08 +00:00
2017-06-04 17:52:21 +00:00
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")
2017-04-15 06:02:08 +00:00
2017-06-04 17:52:21 +00:00
find_package(UV REQUIRED)
2017-05-27 07:34:42 +00:00
2017-11-06 00:11:35 +00:00
include(cmake/flags.cmake)
2017-04-15 06:02:08 +00:00
2017-06-07 21:10:26 +00:00
if (WITH_LIBCPUID)
2017-06-07 22:51:24 +00:00
add_subdirectory(src/3rdparty/libcpuid)
2017-06-07 21:10:26 +00:00
2017-06-07 22:51:24 +00:00
include_directories(src/3rdparty/libcpuid)
set(CPUID_LIB cpuid)
set(SOURCES_CPUID src/core/cpu/AdvancedCpuInfo.h src/core/cpu/AdvancedCpuInfo.cpp src/core/cpu/Cpu.cpp)
2017-06-07 21:10:26 +00:00
else()
add_definitions(/DXMRIG_NO_LIBCPUID)
set(SOURCES_CPUID src/common/cpu/BasicCpuInfo.h src/common/cpu/Cpu.cpp)
2017-11-06 00:11:35 +00:00
2017-11-26 19:23:23 +00:00
if (XMRIG_ARM)
set(SOURCES_CPUID ${SOURCES_CPUID} src/common/cpu/BasicCpuInfo_arm.cpp)
2017-11-06 00:11:35 +00:00
else()
set(SOURCES_CPUID ${SOURCES_CPUID} src/common/cpu/BasicCpuInfo.cpp)
2017-11-06 00:11:35 +00:00
endif()
2017-06-07 21:10:26 +00:00
endif()
2018-09-16 00:06:54 +00:00
include(cmake/OpenSSL.cmake)
2018-09-23 17:16:33 +00:00
include(cmake/asm.cmake)
include(cmake/cn-gpu.cmake)
2018-09-16 00:06:54 +00:00
2017-06-24 23:04:59 +00:00
CHECK_INCLUDE_FILE (syslog.h HAVE_SYSLOG_H)
if (HAVE_SYSLOG_H)
add_definitions(/DHAVE_SYSLOG_H)
2018-04-20 11:54:58 +00:00
set(SOURCES_SYSLOG src/common/log/SysLog.h src/common/log/SysLog.cpp)
2017-06-24 23:04:59 +00:00
endif()
2017-09-02 16:04:40 +00:00
if (NOT WITH_AEON)
add_definitions(/DXMRIG_NO_AEON)
endif()
2018-04-02 19:55:28 +00:00
if (NOT WITH_SUMO)
add_definitions(/DXMRIG_NO_SUMO)
endif()
2018-04-20 17:19:33 +00:00
if (NOT WITH_IPBC)
add_definitions(/DXMRIG_NO_IPBC)
endif()
if (NOT WITH_CN_PICO)
add_definitions(/DXMRIG_NO_CN_PICO)
endif()
if (WITH_HTTPD)
find_package(MHD)
if (MHD_FOUND)
include_directories(${MHD_INCLUDE_DIRS})
2018-03-27 07:01:38 +00:00
set(HTTPD_SOURCES
src/api/Api.h
2018-03-27 07:01:38 +00:00
src/api/ApiRouter.h
2018-04-13 00:12:53 +00:00
src/common/api/HttpBody.h
src/common/api/Httpd.h
src/common/api/HttpReply.h
src/common/api/HttpRequest.h
src/api/Api.cpp
2018-03-27 07:01:38 +00:00
src/api/ApiRouter.cpp
2018-04-13 00:12:53 +00:00
src/common/api/Httpd.cpp
src/common/api/HttpRequest.cpp
2018-03-27 07:01:38 +00:00
)
else()
message(FATAL_ERROR "microhttpd NOT found: use `-DWITH_HTTPD=OFF` to build without http deamon support")
endif()
else()
2018-09-16 00:06:54 +00:00
set(HTTPD_SOURCES "")
set(MHD_LIBRARY "")
add_definitions(/DXMRIG_NO_HTTPD)
2017-09-02 12:50:27 +00:00
add_definitions(/DXMRIG_NO_API)
endif()
2017-06-04 17:52:21 +00:00
include_directories(src)
include_directories(src/3rdparty)
include_directories(${UV_INCLUDE_DIR})
2017-05-10 09:58:52 +00:00
if (BUILD_STATIC)
set(CMAKE_EXE_LINKER_FLAGS " -static")
endif()
2018-09-02 22:26:19 +00:00
if (WITH_DEBUG_LOG)
add_definitions(/DAPP_DEBUG)
endif()
add_executable(${CMAKE_PROJECT_NAME} ${HEADERS} ${SOURCES} ${SOURCES_OS} ${SOURCES_CPUID} ${HEADERS_CRYPTO} ${SOURCES_CRYPTO} ${SOURCES_SYSLOG} ${HTTPD_SOURCES} ${TLS_SOURCES} ${XMRIG_ASM_SOURCES} ${CN_GPU_SOURCES})
2018-11-10 20:18:56 +00:00
target_link_libraries(${CMAKE_PROJECT_NAME} ${XMRIG_ASM_LIBRARY} ${OPENSSL_LIBRARIES} ${UV_LIBRARIES} ${MHD_LIBRARY} ${EXTRA_LIBS} ${CPUID_LIB})