contour-creator/CMakeLists.txt

12 lines
236 B
CMake
Raw Normal View History

2024-03-29 16:12:42 +00:00
project(inf205 CXX)
cmake_minimum_required(VERSION 3.0)
find_package(GDAL CONFIG REQUIRED)
2024-04-06 11:18:28 +00:00
set(EXAMPLE_NAME marching_squares)
2024-03-29 16:12:42 +00:00
add_executable(${EXAMPLE_NAME}
2024-04-06 11:18:28 +00:00
main.cpp HeightMap.cpp
2024-03-29 16:12:42 +00:00
)
target_link_libraries(${EXAMPLE_NAME} GDAL::GDAL)