mirror of
https://gitlab.com/Trygve/contour-creator.git
synced 2024-11-09 16:20:15 +00:00
12 lines
220 B
CMake
12 lines
220 B
CMake
project(inf205 CXX)
|
|
cmake_minimum_required(VERSION 3.0)
|
|
|
|
find_package(GDAL CONFIG REQUIRED)
|
|
|
|
set(EXAMPLE_NAME read_tiff)
|
|
add_executable(${EXAMPLE_NAME}
|
|
read_tiff.cpp
|
|
)
|
|
|
|
|
|
target_link_libraries(${EXAMPLE_NAME} GDAL::GDAL) |