mirror of
https://gitlab.com/Trygve/contour-creator.git
synced 2024-11-21 23:00:18 +00:00
13 lines
224 B
CMake
13 lines
224 B
CMake
project(
|
|
INF205
|
|
LANGUAGES CXX)
|
|
cmake_minimum_required(VERSION 3.0)
|
|
|
|
find_package(GDAL CONFIG REQUIRED)
|
|
|
|
add_executable(${PROJECT_NAME}
|
|
src/HeightMap.cpp src/main.cpp
|
|
)
|
|
|
|
|
|
target_link_libraries(${PROJECT_NAME} GDAL::GDAL) |