mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-16 12:54:50 +01:00
7 lines
331 B
CMake
7 lines
331 B
CMake
add_library(DHT SHARED DHT.c DHT.h)
|
|
target_include_directories(DHT PRIVATE ${MPI_C_INCLUDE_DIRS})
|
|
target_link_libraries(DHT MPI::MPI_C)
|
|
|
|
add_library(DHT_Wrapper STATIC DHT_Wrapper.cpp DHT_Wrapper.h)
|
|
target_include_directories(DHT_Wrapper PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})
|
|
target_link_libraries(DHT_Wrapper DHT m crypto POET_Util) |