First approach

This commit is contained in:
2023-09-18 23:26:22 +02:00
parent 501ea0ab4e
commit 06fb135526
8 changed files with 150 additions and 45 deletions

View File

@@ -9,8 +9,8 @@ add_executable(manage manage.cc Results.cc ReportConsole.cc ReportExcel.cc Repor
add_executable(list list.cc platformUtils Datasets.cc)
target_link_libraries(main BayesNet ArffFiles mdlp "${TORCH_LIBRARIES}")
if (${CMAKE_HOST_SYSTEM_NAME} MATCHES "Linux")
target_link_libraries(manage "${TORCH_LIBRARIES}" OpenXLSX::OpenXLSX stdc++fs)
target_link_libraries(manage "${TORCH_LIBRARIES}" libxlsxwriter.so stdc++fs)
target_link_libraries(manage "${TORCH_LIBRARIES}" libxlsxwriter.so)
else()
target_link_libraries(manage "${TORCH_LIBRARIES}" OpenXLSX::OpenXLSX)
endif()
target_link_libraries(list ArffFiles mdlp "${TORCH_LIBRARIES}")