
# 2.0.0 **Thx to @xmrig and @SChernykh awesome work!** * Full Rebase on XMRig 3.1.1 * randomX/wow/XL * NUMA support * flexible multi algorithm configuration * unlimited switching between incompatible algorithms at runtime * Argon2, UPX2 (Nice hashrate improvement) and CN-Conceal support integrated like in previous version * 5-10% Hashrate improvement on ARMv8 CPUs when mining CN based algos compared to stock xmrig * Fully compatible to XMRigCCServer 1.9.5 no server upgrade needed! **New XMRigCCServer will be released soon with new features**
18 lines
395 B
CMake
18 lines
395 B
CMake
if (WITH_ARGON2)
|
|
add_definitions(/DXMRIG_ALGO_ARGON2)
|
|
|
|
list(APPEND HEADERS_CRYPTO
|
|
src/crypto/argon2/Hash.h
|
|
src/crypto/argon2/Impl.h
|
|
)
|
|
|
|
list(APPEND SOURCES_CRYPTO
|
|
src/crypto/argon2/Impl.cpp
|
|
)
|
|
|
|
add_subdirectory(src/3rdparty/argon2)
|
|
set(ARGON2_LIBRARY argon2)
|
|
else()
|
|
remove_definitions(/DXMRIG_ALGO_ARGON2)
|
|
set(ARGON2_LIBRARY "")
|
|
endif()
|