2024-01-06 21:38:34 +00:00
|
|
|
include_directories(
|
|
|
|
${BayesNet_SOURCE_DIR}/lib/mdlp
|
|
|
|
${BayesNet_SOURCE_DIR}/lib/Files
|
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-02-23 19:36:11 +00:00
|
|
|
${BayesNet_SOURCE_DIR}/src
|
2024-02-27 12:06:13 +00:00
|
|
|
${BayesNet_SOURCE_DIR}/src/feature_selection
|
|
|
|
${BayesNet_SOURCE_DIR}/src/bayesian_network
|
|
|
|
${BayesNet_SOURCE_DIR}/src/classifiers
|
|
|
|
${BayesNet_SOURCE_DIR}/src/ensembles
|
|
|
|
${BayesNet_SOURCE_DIR}/src/utils
|
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})
|
2023-10-13 11:46:22 +00:00
|
|
|
target_link_libraries(BayesNet mdlp "${TORCH_LIBRARIES}")
|