mirror of
https://github.com/kvazar-network/keva-stratum.git
synced 2025-03-13 06:21:28 +00:00
12 lines
309 B
CMake
12 lines
309 B
CMake
set(LIB "hashing")
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=c11 -D_GNU_SOURCE")
|
|
|
|
include_directories("${MONERO_DIR}/contrib/epee/include")
|
|
include_directories("${MONERO_DIR}/src")
|
|
|
|
add_library(${LIB} SHARED src/hashing.c)
|
|
target_link_libraries(${LIB}
|
|
${MONERO_DIR}/build/release/src/crypto/libcrypto.a
|
|
)
|