mirror of
https://github.com/rmontanana/mdlp.git
synced 2025-08-15 23:45:57 +00:00
* Fix debug conan build target * Add viewcoverage and fix coverage generation * Add more tests to cover new integrity checks * Add tests to accomplish 100% * Fix conan-create makefile target
13 lines
311 B
CMake
13 lines
311 B
CMake
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
find_package(arff-files REQUIRED)
|
|
|
|
include_directories(
|
|
${fimdlp_SOURCE_DIR}/src
|
|
${CMAKE_BINARY_DIR}/configured_files/include
|
|
${arff-files_INCLUDE_DIRS}
|
|
)
|
|
|
|
add_executable(sample sample.cpp)
|
|
target_link_libraries(sample PRIVATE fimdlp torch::torch arff-files::arff-files)
|