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
|
|
|
|
2024-02-27 12:06:13 +00:00
|
|
|
file(GLOB_RECURSE Sources "*.cc")
|
|
|
|
|
|
|
|
add_library(BayesNet ${Sources})
|
2024-11-23 17:22:41 +00:00
|
|
|
target_link_libraries(BayesNet fimdlp "${TORCH_LIBRARIES}")
|