BayesNet/bayesnet/CMakeLists.txt

13 lines
349 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-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-03-07 23:37:36 +00:00
target_link_libraries(BayesNet mdlp "${TORCH_LIBRARIES}")