Ricardo Montañana Gómez
86f2bc44fc
Add mdlp as library in lib/ Fix tests to reach 99.1% of coverage Reviewed-on: #31
13 lines
351 B
CMake
13 lines
351 B
CMake
include_directories(
|
|
${BayesNet_SOURCE_DIR}/lib/mdlp/src
|
|
${BayesNet_SOURCE_DIR}/lib/folding
|
|
${BayesNet_SOURCE_DIR}/lib/json/include
|
|
${BayesNet_SOURCE_DIR}
|
|
${CMAKE_BINARY_DIR}/configured_files/include
|
|
)
|
|
|
|
file(GLOB_RECURSE Sources "*.cc")
|
|
|
|
add_library(BayesNet ${Sources})
|
|
target_link_libraries(BayesNet fimdlp "${TORCH_LIBRARIES}")
|