MapViewer/CMakeLists.txt

14 lines
361 B
CMake
Raw Normal View History

2021-04-14 19:04:08 +00:00
# CMakeList.txt : Top-level CMake project file, do global configuration
# and include sub-projects here.
#
cmake_minimum_required (VERSION 3.8)
project ("MapViewer")
# Include sub-projects.
2022-05-03 12:58:14 +00:00
add_subdirectory ("vendor/osmparser")
add_subdirectory ("vendor/triangle")
add_subdirectory ("vendor/glad")
add_subdirectory ("vendor/glfw")
2021-04-14 19:04:08 +00:00
2022-05-03 12:58:14 +00:00
add_subdirectory ("src")