mirror of
https://github.com/rmontanana/mdlp.git
synced 2025-08-15 15:35:55 +00:00
9 lines
211 B
CMake
9 lines
211 B
CMake
cmake_minimum_required(VERSION 3.20)
|
|
project(test_fimdlp)
|
|
|
|
set(CMAKE_CXX_STANDARD 17)
|
|
|
|
find_package(fimdlp REQUIRED)
|
|
|
|
add_executable(test_fimdlp test_fimdlp.cpp)
|
|
target_link_libraries(test_fimdlp fimdlp::fimdlp) |