Add shoreline facility

This commit is contained in:
2026-04-07 21:26:37 -07:00
parent 7db6259b06
commit 5a7350dbae
20 changed files with 2022 additions and 240 deletions

View File

@@ -7,6 +7,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
find_package(OpenGL REQUIRED)
find_package(glfw3 REQUIRED)
find_package(Freetype REQUIRED)
find_package(GDAL REQUIRED)
add_executable(radar_simulation
src/main.cpp
@@ -16,12 +17,18 @@ add_executable(radar_simulation
target_include_directories(radar_simulation PRIVATE
${CMAKE_SOURCE_DIR}/include
${FREETYPE_INCLUDE_DIRS}
${GDAL_INCLUDE_DIRS}
)
target_compile_definitions(radar_simulation PRIVATE
MAP_DIR="${CMAKE_SOURCE_DIR}/map"
)
target_link_libraries(radar_simulation PRIVATE
OpenGL::GL
glfw
Freetype::Freetype
${GDAL_LIBRARIES}
)
add_custom_target(copy_shaders ALL