BayesNet/bayesnet/CMakeLists.txt

14 lines
381 B
CMake
Raw Normal View History

2024-01-06 21:38:34 +00:00
include_directories(
2024-07-04 16:52:41 +00:00
${BayesNet_SOURCE_DIR}/lib/mdlp/src
2024-01-07 18:58:22 +00:00
${BayesNet_SOURCE_DIR}/lib/folding
2024-01-06 21:38:34 +00:00
${BayesNet_SOURCE_DIR}/lib/json/include
2024-03-08 21:20:54 +00:00
${BayesNet_SOURCE_DIR}
2024-01-07 18:58:22 +00:00
${CMAKE_BINARY_DIR}/configured_files/include
2024-11-20 20:02:56 +00:00
${FImdlp_INCLUDE_DIRS}
2024-01-06 21:38:34 +00:00
)
2023-11-13 10:13:32 +00:00
file(GLOB_RECURSE Sources "*.cc")
add_library(BayesNet ${Sources})
2024-11-20 20:02:56 +00:00
target_link_libraries(BayesNet ${FImdlp} "${TORCH_LIBRARIES}")