Fix conan build

This commit is contained in:
2025-06-28 19:17:44 +02:00
parent f1dae498ac
commit c1759ba1ce
3 changed files with 12 additions and 2 deletions

View File

@@ -2,7 +2,8 @@ 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)
target_link_libraries(test_fimdlp fimdlp::fimdlp torch::torch)
target_compile_features(test_fimdlp PRIVATE cxx_std_17)