2017-12-16 19:27:11 +07:00
|
|
|
cmake_minimum_required(VERSION 2.8)
|
2017-06-04 20:52:21 +03:00
|
|
|
project(xmrig)
|
2017-05-03 10:53:51 +03:00
|
|
|
|
2017-06-08 00:10:26 +03:00
|
|
|
option(WITH_LIBCPUID "Use Libcpuid" ON)
|
|
|
|
option(WITH_AEON "CryptoNight-Lite support" ON)
|
2018-04-03 02:55:28 +07:00
|
|
|
option(WITH_SUMO "CryptoNight-Heavy support" ON)
|
2017-08-31 02:28:33 +03:00
|
|
|
option(WITH_HTTPD "HTTP REST API" ON)
|
2018-03-12 21:03:04 +01:00
|
|
|
option(BUILD_STATIC "Build static binary" OFF)
|
2017-06-25 02:04:59 +03:00
|
|
|
|
|
|
|
include (CheckIncludeFile)
|
2017-11-06 03:11:35 +03:00
|
|
|
include (cmake/cpu.cmake)
|
2017-06-25 02:04:59 +03:00
|
|
|
|
|
|
|
|
2017-04-15 09:02:08 +03:00
|
|
|
set(HEADERS
|
2017-09-01 15:35:00 +03:00
|
|
|
src/api/NetworkState.h
|
2017-06-04 20:52:21 +03:00
|
|
|
src/App.h
|
2018-04-13 06:38:18 +07:00
|
|
|
src/common/config/CommonConfig.h
|
|
|
|
src/common/config/ConfigLoader.h
|
|
|
|
src/common/config/ConfigWatcher.h
|
2018-04-20 13:44:30 +07:00
|
|
|
src/common/Console.h
|
2018-04-25 14:48:32 +07:00
|
|
|
src/common/crypto/Algorithm.h
|
2018-04-20 14:45:51 +07:00
|
|
|
src/common/crypto/keccak.h
|
2018-06-05 07:34:58 +07: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/ILogBackend.h
|
|
|
|
src/common/interfaces/IStrategy.h
|
|
|
|
src/common/interfaces/IStrategyListener.h
|
|
|
|
src/common/interfaces/IWatcherListener.h
|
2018-07-20 03:37:07 +07:00
|
|
|
src/common/log/BasicLog.h
|
2018-04-20 23:44:32 +07:00
|
|
|
src/common/log/ConsoleLog.h
|
|
|
|
src/common/log/FileLog.h
|
|
|
|
src/common/log/Log.h
|
2018-04-20 13:44:30 +07:00
|
|
|
src/common/net/Client.h
|
|
|
|
src/common/net/Id.h
|
2018-04-20 23:44:32 +07:00
|
|
|
src/common/net/Job.h
|
2018-04-20 13:44:30 +07:00
|
|
|
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 07:23:01 +07:00
|
|
|
src/common/Platform.h
|
2018-04-13 06:38:18 +07:00
|
|
|
src/common/utils/c_str.h
|
2018-04-15 11:08:47 +07:00
|
|
|
src/common/utils/mm_malloc.h
|
2018-04-13 07:00:51 +07:00
|
|
|
src/common/xmrig.h
|
2018-03-31 13:48:06 +07:00
|
|
|
src/core/ConfigLoader_platform.h
|
2018-03-27 14:01:38 +07:00
|
|
|
src/core/Controller.h
|
2017-06-09 15:09:21 +03:00
|
|
|
src/Cpu.h
|
2017-06-11 15:32:15 +03:00
|
|
|
src/interfaces/IJobResultListener.h
|
2018-04-01 22:49:21 +07:00
|
|
|
src/interfaces/IThread.h
|
2017-06-10 07:05:00 +03:00
|
|
|
src/interfaces/IWorker.h
|
2017-06-09 15:09:21 +03:00
|
|
|
src/Mem.h
|
2017-06-11 10:58:46 +03:00
|
|
|
src/net/JobResult.h
|
2017-06-04 20:52:21 +03:00
|
|
|
src/net/Network.h
|
2017-06-28 06:17:02 +03:00
|
|
|
src/net/strategies/DonateStrategy.h
|
2017-06-08 01:16:45 +03:00
|
|
|
src/Summary.h
|
2017-06-12 16:19:07 +03:00
|
|
|
src/version.h
|
2018-04-01 22:49:21 +07:00
|
|
|
src/workers/CpuThread.h
|
2017-06-10 07:05:00 +03:00
|
|
|
src/workers/Handle.h
|
2017-06-15 21:00:25 +03:00
|
|
|
src/workers/Hashrate.h
|
2018-04-14 22:14:57 +07:00
|
|
|
src/workers/MultiWorker.h
|
2017-06-10 07:05:00 +03:00
|
|
|
src/workers/Worker.h
|
2017-06-10 09:41:08 +03:00
|
|
|
src/workers/Workers.h
|
2017-04-15 09:02:08 +03:00
|
|
|
)
|
|
|
|
|
2017-06-08 04:20:10 +03: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 09:47:25 +03:00
|
|
|
src/crypto/CryptoNight.h
|
2018-04-03 02:55:28 +07:00
|
|
|
src/crypto/CryptoNight_constants.h
|
2018-03-06 21:34:20 +07:00
|
|
|
src/crypto/CryptoNight_monero.h
|
2017-06-08 23:31:42 +03:00
|
|
|
src/crypto/CryptoNight_test.h
|
2017-06-08 04:20:10 +03:00
|
|
|
src/crypto/groestl_tables.h
|
|
|
|
src/crypto/hash.h
|
|
|
|
src/crypto/skein_port.h
|
2017-11-03 05:35:29 +03:00
|
|
|
src/crypto/soft_aes.h
|
2017-06-08 04:20:10 +03:00
|
|
|
)
|
|
|
|
|
2017-11-26 22:23:23 +03:00
|
|
|
if (XMRIG_ARM)
|
|
|
|
set(HEADERS_CRYPTO "${HEADERS_CRYPTO}" src/crypto/CryptoNight_arm.h)
|
2017-11-06 03:11:35 +03:00
|
|
|
else()
|
|
|
|
set(HEADERS_CRYPTO "${HEADERS_CRYPTO}" src/crypto/CryptoNight_x86.h)
|
|
|
|
endif()
|
|
|
|
|
2017-04-15 09:02:08 +03:00
|
|
|
set(SOURCES
|
2017-09-01 15:35:00 +03:00
|
|
|
src/api/NetworkState.cpp
|
2017-06-04 20:52:21 +03:00
|
|
|
src/App.cpp
|
2018-04-13 06:38:18 +07:00
|
|
|
src/common/config/CommonConfig.cpp
|
|
|
|
src/common/config/ConfigLoader.cpp
|
|
|
|
src/common/config/ConfigWatcher.cpp
|
2018-04-20 13:44:30 +07:00
|
|
|
src/common/Console.cpp
|
2018-04-25 14:48:32 +07:00
|
|
|
src/common/crypto/Algorithm.cpp
|
2018-04-20 14:45:51 +07:00
|
|
|
src/common/crypto/keccak.cpp
|
2018-07-20 03:37:07 +07:00
|
|
|
src/common/log/BasicLog.cpp
|
2018-04-20 23:44:32 +07:00
|
|
|
src/common/log/ConsoleLog.cpp
|
|
|
|
src/common/log/FileLog.cpp
|
|
|
|
src/common/log/Log.cpp
|
2018-04-20 13:44:30 +07:00
|
|
|
src/common/net/Client.cpp
|
2018-04-20 23:44:32 +07:00
|
|
|
src/common/net/Job.cpp
|
2018-04-20 13:44:30 +07:00
|
|
|
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 07:23:01 +07:00
|
|
|
src/common/Platform.cpp
|
2018-03-31 13:48:06 +07:00
|
|
|
src/core/Config.cpp
|
2018-03-27 14:01:38 +07:00
|
|
|
src/core/Controller.cpp
|
2017-06-09 15:09:21 +03:00
|
|
|
src/Mem.cpp
|
2017-06-04 20:52:21 +03:00
|
|
|
src/net/Network.cpp
|
2017-06-28 06:17:02 +03:00
|
|
|
src/net/strategies/DonateStrategy.cpp
|
2017-06-08 01:16:45 +03:00
|
|
|
src/Summary.cpp
|
2018-04-01 22:49:21 +07:00
|
|
|
src/workers/CpuThread.cpp
|
2017-06-10 07:05:00 +03:00
|
|
|
src/workers/Handle.cpp
|
2017-06-15 21:00:25 +03:00
|
|
|
src/workers/Hashrate.cpp
|
2018-04-14 22:14:57 +07:00
|
|
|
src/workers/MultiWorker.cpp
|
2017-06-10 07:05:00 +03:00
|
|
|
src/workers/Worker.cpp
|
2017-06-10 09:41:08 +03:00
|
|
|
src/workers/Workers.cpp
|
2017-06-04 20:52:21 +03:00
|
|
|
src/xmrig.cpp
|
2017-04-15 09:02:08 +03:00
|
|
|
)
|
|
|
|
|
2017-06-08 04:20:10 +03:00
|
|
|
set(SOURCES_CRYPTO
|
|
|
|
src/crypto/c_groestl.c
|
|
|
|
src/crypto/c_blake256.c
|
|
|
|
src/crypto/c_jh.c
|
|
|
|
src/crypto/c_skein.c
|
|
|
|
)
|
|
|
|
|
2017-04-15 09:02:08 +03:00
|
|
|
if (WIN32)
|
2017-06-04 20:52:21 +03:00
|
|
|
set(SOURCES_OS
|
|
|
|
res/app.rc
|
2017-06-13 13:20:15 +03:00
|
|
|
src/App_win.cpp
|
2018-04-13 07:23:01 +07:00
|
|
|
src/common/Platform_win.cpp
|
2017-06-08 00:10:26 +03:00
|
|
|
src/Cpu_win.cpp
|
2017-06-09 15:09:21 +03:00
|
|
|
src/Mem_win.cpp
|
2017-06-04 20:52:21 +03:00
|
|
|
)
|
|
|
|
|
2017-06-14 21:33:20 +03:00
|
|
|
add_definitions(/DWIN32)
|
2017-06-04 20:52:21 +03:00
|
|
|
set(EXTRA_LIBS ws2_32 psapi iphlpapi userenv)
|
2017-06-14 19:13:02 +03:00
|
|
|
elseif (APPLE)
|
|
|
|
set(SOURCES_OS
|
|
|
|
src/App_unix.cpp
|
2018-04-13 07:23:01 +07:00
|
|
|
src/common/Platform_mac.cpp
|
2017-06-14 20:51:47 +03:00
|
|
|
src/Cpu_mac.cpp
|
2017-06-14 19:13:02 +03:00
|
|
|
src/Mem_unix.cpp
|
|
|
|
)
|
2017-04-15 09:02:08 +03:00
|
|
|
else()
|
2017-06-14 19:13:02 +03:00
|
|
|
set(SOURCES_OS
|
|
|
|
src/App_unix.cpp
|
2018-04-13 07:23:01 +07:00
|
|
|
src/common/Platform_unix.cpp
|
2017-06-14 19:13:02 +03:00
|
|
|
src/Cpu_unix.cpp
|
|
|
|
src/Mem_unix.cpp
|
|
|
|
)
|
|
|
|
|
2017-10-30 00:48:49 +03:00
|
|
|
set(EXTRA_LIBS pthread rt)
|
2017-04-15 09:02:08 +03:00
|
|
|
endif()
|
|
|
|
|
2017-10-20 19:54:18 +03:00
|
|
|
if (CMAKE_SYSTEM_NAME STREQUAL FreeBSD)
|
|
|
|
set(EXTRA_LIBS ${EXTRA_LIBS} kvm)
|
|
|
|
endif()
|
|
|
|
|
2017-11-24 00:23:04 +03:00
|
|
|
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()
|
|
|
|
|
2017-08-29 23:41:57 +03:00
|
|
|
add_definitions(/D__STDC_FORMAT_MACROS)
|
2017-05-05 15:49:38 +03:00
|
|
|
add_definitions(/DUNICODE)
|
2018-04-18 09:58:06 +07:00
|
|
|
#add_definitions(/DAPP_DEBUG)
|
2017-04-15 09:02:08 +03:00
|
|
|
|
2017-06-04 20:52:21 +03:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")
|
2017-04-15 09:02:08 +03:00
|
|
|
|
2017-06-04 20:52:21 +03:00
|
|
|
find_package(UV REQUIRED)
|
2017-05-27 10:34:42 +03:00
|
|
|
|
2017-11-06 03:11:35 +03:00
|
|
|
include(cmake/flags.cmake)
|
2017-04-15 09:02:08 +03:00
|
|
|
|
2017-06-08 00:10:26 +03:00
|
|
|
if (WITH_LIBCPUID)
|
2017-06-08 01:51:24 +03:00
|
|
|
add_subdirectory(src/3rdparty/libcpuid)
|
2017-06-08 00:10:26 +03:00
|
|
|
|
2017-06-08 01:51:24 +03:00
|
|
|
include_directories(src/3rdparty/libcpuid)
|
|
|
|
set(CPUID_LIB cpuid)
|
|
|
|
set(SOURCES_CPUID src/Cpu.cpp)
|
2017-06-08 00:10:26 +03:00
|
|
|
else()
|
|
|
|
add_definitions(/DXMRIG_NO_LIBCPUID)
|
2017-11-06 03:11:35 +03:00
|
|
|
|
2017-11-26 22:23:23 +03:00
|
|
|
if (XMRIG_ARM)
|
2017-11-06 03:11:35 +03:00
|
|
|
set(SOURCES_CPUID src/Cpu_arm.cpp)
|
|
|
|
else()
|
|
|
|
set(SOURCES_CPUID src/Cpu_stub.cpp)
|
|
|
|
endif()
|
2017-06-08 00:10:26 +03:00
|
|
|
endif()
|
|
|
|
|
2017-06-25 02:04:59 +03:00
|
|
|
CHECK_INCLUDE_FILE (syslog.h HAVE_SYSLOG_H)
|
|
|
|
if (HAVE_SYSLOG_H)
|
|
|
|
add_definitions(/DHAVE_SYSLOG_H)
|
2018-04-20 18:54:58 +07:00
|
|
|
set(SOURCES_SYSLOG src/common/log/SysLog.h src/common/log/SysLog.cpp)
|
2017-06-25 02:04:59 +03:00
|
|
|
endif()
|
|
|
|
|
2017-09-02 19:04:40 +03:00
|
|
|
if (NOT WITH_AEON)
|
|
|
|
add_definitions(/DXMRIG_NO_AEON)
|
|
|
|
endif()
|
|
|
|
|
2018-04-03 02:55:28 +07:00
|
|
|
if (NOT WITH_SUMO)
|
|
|
|
add_definitions(/DXMRIG_NO_SUMO)
|
|
|
|
endif()
|
|
|
|
|
2018-04-21 00:19:33 +07:00
|
|
|
if (NOT WITH_IPBC)
|
|
|
|
add_definitions(/DXMRIG_NO_IPBC)
|
|
|
|
endif()
|
|
|
|
|
2017-10-04 23:33:30 +03:00
|
|
|
if (WITH_HTTPD)
|
|
|
|
find_package(MHD)
|
2017-08-31 02:28:33 +03:00
|
|
|
|
2017-10-04 23:33:30 +03:00
|
|
|
if (MHD_FOUND)
|
|
|
|
include_directories(${MHD_INCLUDE_DIRS})
|
2018-03-27 14:01:38 +07:00
|
|
|
set(HTTPD_SOURCES
|
2018-04-07 00:44:48 +07:00
|
|
|
src/api/Api.h
|
2018-03-27 14:01:38 +07:00
|
|
|
src/api/ApiRouter.h
|
2018-04-13 07:12:53 +07:00
|
|
|
src/common/api/HttpBody.h
|
|
|
|
src/common/api/Httpd.h
|
|
|
|
src/common/api/HttpReply.h
|
|
|
|
src/common/api/HttpRequest.h
|
2018-04-07 00:44:48 +07:00
|
|
|
src/api/Api.cpp
|
2018-03-27 14:01:38 +07:00
|
|
|
src/api/ApiRouter.cpp
|
2018-04-13 07:12:53 +07:00
|
|
|
src/common/api/Httpd.cpp
|
|
|
|
src/common/api/HttpRequest.cpp
|
2018-03-27 14:01:38 +07:00
|
|
|
)
|
2017-10-04 23:33:30 +03:00
|
|
|
else()
|
|
|
|
message(FATAL_ERROR "microhttpd NOT found: use `-DWITH_HTTPD=OFF` to build without http deamon support")
|
|
|
|
endif()
|
2017-08-31 02:28:33 +03:00
|
|
|
else()
|
2018-01-06 17:07:07 +08:00
|
|
|
set(MHD_LIBRARY "")
|
2017-08-31 02:28:33 +03:00
|
|
|
add_definitions(/DXMRIG_NO_HTTPD)
|
2017-09-02 15:50:27 +03:00
|
|
|
add_definitions(/DXMRIG_NO_API)
|
2017-08-31 02:28:33 +03:00
|
|
|
endif()
|
|
|
|
|
2017-06-04 20:52:21 +03:00
|
|
|
include_directories(src)
|
|
|
|
include_directories(src/3rdparty)
|
|
|
|
include_directories(${UV_INCLUDE_DIR})
|
2017-05-10 12:58:52 +03:00
|
|
|
|
2018-03-12 21:03:04 +01:00
|
|
|
if (BUILD_STATIC)
|
|
|
|
set(CMAKE_EXE_LINKER_FLAGS " -static")
|
|
|
|
endif()
|
|
|
|
|
2018-06-01 01:48:31 +07:00
|
|
|
add_executable(${PROJECT_NAME} ${HEADERS} ${SOURCES} ${SOURCES_OS} ${SOURCES_CPUID} ${HEADERS_CRYPTO} ${SOURCES_CRYPTO} ${SOURCES_SYSLOG} ${HTTPD_SOURCES})
|
|
|
|
target_link_libraries(${PROJECT_NAME} ${UV_LIBRARIES} ${MHD_LIBRARY} ${EXTRA_LIBS} ${CPUID_LIB})
|