Add shoreline facility
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user