mirror of
https://github.com/xmrig/xmrig.git
synced 2024-11-05 16:07:42 +00:00
264 lines
7.7 KiB
CMake
264 lines
7.7 KiB
CMake
cmake_minimum_required(VERSION 2.8)
|
|
project(xmrig)
|
|
|
|
option(WITH_LIBCPUID "Use Libcpuid" ON)
|
|
option(WITH_HWLOC "Use hwloc" OFF)
|
|
option(WITH_CN_LITE "CryptoNight-Lite support" ON)
|
|
option(WITH_CN_HEAVY "CryptoNight-Heavy support" ON)
|
|
option(WITH_CN_PICO "CryptoNight-Pico support" ON)
|
|
option(WITH_CN_GPU "CryptoNight-GPU support" ON)
|
|
option(WITH_RANDOMX "RandomX support" ON)
|
|
option(WITH_HTTP "HTTP protocol support (client/server)" ON)
|
|
option(WITH_DEBUG_LOG "Enable debug log output" OFF)
|
|
option(WITH_TLS "Enable OpenSSL support" ON)
|
|
option(WITH_ASM "Enable ASM PoW implementations" ON)
|
|
option(WITH_EMBEDDED_CONFIG "Enable internal embedded JSON config" OFF)
|
|
|
|
option(BUILD_STATIC "Build static binary" OFF)
|
|
option(ARM_TARGET "Force use specific ARM target 8 or 7" 0)
|
|
option(HWLOC_DEBUG "Enable hwloc debug helpers and log" OFF)
|
|
|
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")
|
|
|
|
|
|
include (CheckIncludeFile)
|
|
include (cmake/cpu.cmake)
|
|
include (src/base/base.cmake)
|
|
include (src/backend/backend.cmake)
|
|
|
|
|
|
set(HEADERS
|
|
"${HEADERS_BASE}"
|
|
"${HEADERS_BASE_HTTP}"
|
|
"${HEADERS_BACKEND}"
|
|
src/api/interfaces/IApiListener.h
|
|
src/App.h
|
|
src/core/config/Config_default.h
|
|
src/core/config/Config_platform.h
|
|
src/core/config/Config.h
|
|
src/core/config/ConfigTransform.h
|
|
src/core/config/usage.h
|
|
src/core/Controller.h
|
|
src/core/Miner.h
|
|
src/net/interfaces/IJobResultListener.h
|
|
src/net/JobResult.h
|
|
src/net/JobResults.h
|
|
src/net/Network.h
|
|
src/net/NetworkState.h
|
|
src/net/strategies/DonateStrategy.h
|
|
src/Summary.h
|
|
src/version.h
|
|
)
|
|
|
|
set(HEADERS_CRYPTO
|
|
src/crypto/cn/asm/CryptonightR_template.h
|
|
src/crypto/cn/c_blake256.h
|
|
src/crypto/cn/c_groestl.h
|
|
src/crypto/cn/c_jh.h
|
|
src/crypto/cn/c_skein.h
|
|
src/crypto/cn/CnAlgo.h
|
|
src/crypto/cn/CnCtx.h
|
|
src/crypto/cn/CnHash.h
|
|
src/crypto/cn/CryptoNight_monero.h
|
|
src/crypto/cn/CryptoNight_test.h
|
|
src/crypto/cn/CryptoNight.h
|
|
src/crypto/cn/groestl_tables.h
|
|
src/crypto/cn/hash.h
|
|
src/crypto/cn/skein_port.h
|
|
src/crypto/cn/soft_aes.h
|
|
src/crypto/common/Algorithm.h
|
|
src/crypto/common/keccak.h
|
|
src/crypto/common/Nonce.h
|
|
src/crypto/common/portable/mm_malloc.h
|
|
src/crypto/common/VirtualMemory.h
|
|
)
|
|
|
|
if (XMRIG_ARM)
|
|
set(HEADERS_CRYPTO "${HEADERS_CRYPTO}" src/crypto/cn/CryptoNight_arm.h)
|
|
else()
|
|
set(HEADERS_CRYPTO "${HEADERS_CRYPTO}" src/crypto/cn/CryptoNight_x86.h)
|
|
endif()
|
|
|
|
set(SOURCES
|
|
"${SOURCES_BASE}"
|
|
"${SOURCES_BASE_HTTP}"
|
|
"${SOURCES_BACKEND}"
|
|
src/App.cpp
|
|
src/core/config/Config.cpp
|
|
src/core/config/ConfigTransform.cpp
|
|
src/core/Controller.cpp
|
|
src/core/Miner.cpp
|
|
src/net/JobResults.cpp
|
|
src/net/Network.cpp
|
|
src/net/NetworkState.cpp
|
|
src/net/strategies/DonateStrategy.cpp
|
|
src/Summary.cpp
|
|
src/xmrig.cpp
|
|
)
|
|
|
|
set(SOURCES_CRYPTO
|
|
src/crypto/cn/c_blake256.c
|
|
src/crypto/cn/c_groestl.c
|
|
src/crypto/cn/c_jh.c
|
|
src/crypto/cn/c_skein.c
|
|
src/crypto/cn/CnCtx.cpp
|
|
src/crypto/cn/CnHash.cpp
|
|
src/crypto/common/Algorithm.cpp
|
|
src/crypto/common/keccak.cpp
|
|
src/crypto/common/Nonce.cpp
|
|
src/crypto/common/VirtualMemory.cpp
|
|
)
|
|
|
|
if (WIN32)
|
|
set(SOURCES_OS
|
|
"${SOURCES_OS}"
|
|
res/app.rc
|
|
src/App_win.cpp
|
|
src/crypto/common/VirtualMemory_win.cpp
|
|
)
|
|
|
|
add_definitions(/DWIN32)
|
|
set(EXTRA_LIBS ws2_32 psapi iphlpapi userenv)
|
|
elseif (APPLE)
|
|
set(SOURCES_OS
|
|
"${SOURCES_OS}"
|
|
src/App_unix.cpp
|
|
src/crypto/common/VirtualMemory_unix.cpp
|
|
)
|
|
else()
|
|
set(SOURCES_OS
|
|
"${SOURCES_OS}"
|
|
src/App_unix.cpp
|
|
src/crypto/common/VirtualMemory_unix.cpp
|
|
)
|
|
|
|
if (CMAKE_SYSTEM_NAME STREQUAL FreeBSD)
|
|
set(EXTRA_LIBS kvm pthread)
|
|
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)
|
|
|
|
find_package(UV REQUIRED)
|
|
|
|
if (WITH_RANDOMX)
|
|
include_directories(src/crypto/randomx)
|
|
add_definitions(/DXMRIG_ALGO_RANDOMX)
|
|
set(SOURCES_CRYPTO
|
|
"${SOURCES_CRYPTO}"
|
|
src/crypto/randomx/aes_hash.cpp
|
|
src/crypto/randomx/allocator.cpp
|
|
src/crypto/randomx/argon2_core.c
|
|
src/crypto/randomx/argon2_ref.c
|
|
src/crypto/randomx/blake2_generator.cpp
|
|
src/crypto/randomx/blake2/blake2b.c
|
|
src/crypto/randomx/bytecode_machine.cpp
|
|
src/crypto/randomx/dataset.cpp
|
|
src/crypto/randomx/instructions_portable.cpp
|
|
src/crypto/randomx/randomx.cpp
|
|
src/crypto/randomx/reciprocal.c
|
|
src/crypto/randomx/soft_aes.cpp
|
|
src/crypto/randomx/superscalar.cpp
|
|
src/crypto/randomx/virtual_machine.cpp
|
|
src/crypto/randomx/virtual_memory.cpp
|
|
src/crypto/randomx/vm_compiled_light.cpp
|
|
src/crypto/randomx/vm_compiled.cpp
|
|
src/crypto/randomx/vm_interpreted_light.cpp
|
|
src/crypto/randomx/vm_interpreted.cpp
|
|
src/crypto/rx/Rx.cpp
|
|
src/crypto/rx/Rx.h
|
|
src/crypto/rx/RxAlgo.cpp
|
|
src/crypto/rx/RxAlgo.h
|
|
src/crypto/rx/RxCache.cpp
|
|
src/crypto/rx/RxCache.h
|
|
src/crypto/rx/RxConfig.cpp
|
|
src/crypto/rx/RxConfig.h
|
|
src/crypto/rx/RxDataset.cpp
|
|
src/crypto/rx/RxDataset.h
|
|
src/crypto/rx/RxVm.cpp
|
|
src/crypto/rx/RxVm.h
|
|
)
|
|
if (NOT ARCH_ID)
|
|
set(ARCH_ID ${CMAKE_HOST_SYSTEM_PROCESSOR})
|
|
endif()
|
|
if (CMAKE_C_COMPILER_ID MATCHES MSVC)
|
|
enable_language(ASM_MASM)
|
|
list(APPEND SOURCES_CRYPTO
|
|
src/crypto/randomx/jit_compiler_x86_static.asm
|
|
src/crypto/randomx/jit_compiler_x86.cpp
|
|
)
|
|
elseif (NOT XMRIG_ARM AND CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
list(APPEND SOURCES_CRYPTO
|
|
src/crypto/randomx/jit_compiler_x86_static.S
|
|
src/crypto/randomx/jit_compiler_x86.cpp
|
|
)
|
|
# cheat because cmake and ccache hate each other
|
|
set_property(SOURCE src/crypto/randomx/jit_compiler_x86_static.S PROPERTY LANGUAGE C)
|
|
endif()
|
|
else()
|
|
remove_definitions(/DXMRIG_ALGO_RANDOMX)
|
|
endif()
|
|
|
|
include(cmake/flags.cmake)
|
|
|
|
include(cmake/OpenSSL.cmake)
|
|
include(cmake/asm.cmake)
|
|
include(cmake/cn-gpu.cmake)
|
|
|
|
if (WITH_CN_LITE)
|
|
add_definitions(/DXMRIG_ALGO_CN_LITE)
|
|
endif()
|
|
|
|
if (WITH_CN_HEAVY)
|
|
add_definitions(/DXMRIG_ALGO_CN_HEAVY)
|
|
endif()
|
|
|
|
if (WITH_CN_PICO)
|
|
add_definitions(/DXMRIG_ALGO_CN_PICO)
|
|
endif()
|
|
|
|
if (WITH_EMBEDDED_CONFIG)
|
|
add_definitions(/DXMRIG_FEATURE_EMBEDDED_CONFIG)
|
|
endif()
|
|
|
|
if (WITH_HTTP)
|
|
set(HTTP_SOURCES
|
|
src/api/Api.cpp
|
|
src/api/Api.h
|
|
src/api/Httpd.cpp
|
|
src/api/Httpd.h
|
|
src/api/interfaces/IApiRequest.h
|
|
src/api/requests/ApiRequest.cpp
|
|
src/api/requests/ApiRequest.h
|
|
src/api/requests/HttpApiRequest.cpp
|
|
src/api/requests/HttpApiRequest.h
|
|
)
|
|
else()
|
|
set(HTTP_SOURCES "")
|
|
endif()
|
|
|
|
include_directories(src)
|
|
include_directories(src/3rdparty)
|
|
include_directories(${UV_INCLUDE_DIR})
|
|
|
|
if (BUILD_STATIC)
|
|
set(CMAKE_EXE_LINKER_FLAGS " -static")
|
|
endif()
|
|
|
|
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} ${HTTP_SOURCES} ${TLS_SOURCES} ${XMRIG_ASM_SOURCES} ${CN_GPU_SOURCES})
|
|
target_link_libraries(${CMAKE_PROJECT_NAME} ${XMRIG_ASM_LIBRARY} ${OPENSSL_LIBRARIES} ${UV_LIBRARIES} ${EXTRA_LIBS} ${CPUID_LIB} ${HWLOC_LIBRARY})
|