mirror of
https://github.com/rmontanana/mdlp.git
synced 2025-08-15 23:45:57 +00:00
8 lines
243 B
CMake
8 lines
243 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
project(test_fimdlp)
|
|
|
|
find_package(fimdlp REQUIRED)
|
|
|
|
add_executable(test_fimdlp src/test_fimdlp.cpp)
|
|
target_link_libraries(test_fimdlp fimdlp::fimdlp)
|
|
target_compile_features(test_fimdlp PRIVATE cxx_std_17) |