mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 03:34:26 +08:00
10 lines
183 B
CMake
10 lines
183 B
CMake
cmake_minimum_required(VERSION 3.7)
|
|
project(itk-test)
|
|
|
|
find_package(ITK CONFIG REQUIRED)
|
|
|
|
add_executable(main main.cpp)
|
|
target_link_libraries(main PRIVATE
|
|
$<TARGET_NAME:ITKFFT>
|
|
)
|