contour-creator/CMakeLists.txt

13 lines
224 B
CMake
Raw Normal View History

2024-04-06 11:32:44 +00:00
project(
INF205
LANGUAGES CXX)
2024-03-29 16:12:42 +00:00
cmake_minimum_required(VERSION 3.0)
find_package(GDAL CONFIG REQUIRED)
2024-04-06 11:32:44 +00:00
add_executable(${PROJECT_NAME}
src/HeightMap.cpp src/main.cpp
2024-03-29 16:12:42 +00:00
)
2024-04-06 11:32:44 +00:00
target_link_libraries(${PROJECT_NAME} GDAL::GDAL)