Add UPX Support
This commit is contained in:
parent
2b0b71b9f6
commit
7aa17ae7bf
13 changed files with 129 additions and 5 deletions
|
@ -3,6 +3,7 @@ project(xmrig)
|
|||
|
||||
option(WITH_LIBCPUID "Use Libcpuid" ON)
|
||||
option(WITH_AEON "CryptoNight-Lite support" ON)
|
||||
option(WITH_UPLEXA "CryptoNight-UPX support" ON)
|
||||
option(WITH_SUMO "CryptoNight-Heavy support" ON)
|
||||
option(WITH_HTTPD "HTTP REST API" ON)
|
||||
option(WITH_DEBUG_LOG "Enable debug log output" OFF)
|
||||
|
@ -208,6 +209,10 @@ if (NOT WITH_AEON)
|
|||
add_definitions(/DXMRIG_NO_AEON)
|
||||
endif()
|
||||
|
||||
if (NOT WITH_UPLEXA)
|
||||
add_definitions(/DXMRIG_NO_UPLEXA)
|
||||
endif()
|
||||
|
||||
if (NOT WITH_SUMO)
|
||||
add_definitions(/DXMRIG_NO_SUMO)
|
||||
endif()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue