mirror of
https://github.com/rmontanana/mdlp.git
synced 2025-08-15 15:35:55 +00:00
9 lines
285 B
CMake
9 lines
285 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
project(test_fimdlp)
|
|
|
|
find_package(fimdlp REQUIRED)
|
|
find_package(Torch REQUIRED)
|
|
|
|
add_executable(test_fimdlp src/test_fimdlp.cpp)
|
|
target_link_libraries(test_fimdlp fimdlp::fimdlp torch::torch)
|
|
target_compile_features(test_fimdlp PRIVATE cxx_std_17) |