You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
759 B
14 lines
759 B
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
|
|
set(MM_SOURCES mm.c ../mini-gmp.c ../groestl.c ../segwit_addr.c ../keccak.c LP_etomic.c)
|
|
set(MM_LIBS curl pthread libcrypto777 libjpeg libsecp256k1)
|
|
add_executable(marketmaker-testnet ${MM_SOURCES})
|
|
add_executable(marketmaker-mainnet ${MM_SOURCES})
|
|
include_directories(../../crypto777)
|
|
target_compile_definitions(marketmaker-testnet PRIVATE ETOMIC_TESTNET USE_STATIC_NANOMSG)
|
|
target_compile_definitions(marketmaker-mainnet PRIVATE USE_STATIC_NANOMSG)
|
|
if(UNIX)
|
|
target_link_libraries(marketmaker-testnet m)
|
|
target_link_libraries(marketmaker-mainnet m)
|
|
endif()
|
|
target_link_libraries(marketmaker-testnet ${MM_LIBS} etomiclib-testnet)
|
|
target_link_libraries(marketmaker-mainnet ${MM_LIBS} etomiclib-mainnet)
|
|
|