mirror of
https://github.com/rmontanana/mdlp.git
synced 2025-08-15 07:25:56 +00:00
* Fix BinDisc quantile mistakes * Fix FImdlp tests * Fix tests, samples and remove uneeded support files * Add coypright header to sources Fix coverage report Add coverage badge to README * Update sonar github action * Move sources to a folder and change ArffFiles files to library * Add recursive submodules to github action
12 lines
238 B
CMake
12 lines
238 B
CMake
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
set(CMAKE_BUILD_TYPE Debug)
|
|
|
|
include_directories(
|
|
${mdlp_SOURCE_DIR}/src
|
|
${mdlp_SOURCE_DIR}/tests/lib/Files
|
|
)
|
|
|
|
add_executable(sample sample.cpp )
|
|
target_link_libraries(sample mdlp "${TORCH_LIBRARIES}")
|