# CMakeList.txt : Top-level CMake project file, do global configuration # and include sub-projects here. # cmake_minimum_required (VERSION 3.8) project ("MapViewer") find_package(SDL2 CONFIG REQUIRED) # Include sub-projects. add_subdirectory ("lib/osmparser") file(GLOB_RECURSE SOURCE_FILES "src/*.cpp" ) file(GLOB_RECURSE INCLUDE_FILES "include/*.hpp" ) add_executable(mapviewer ${INCLUDE_FILES} ${SOURCE_FILES} ) target_include_directories(mapviewer PRIVATE osmp SDL2::SDL2 ) target_link_libraries(mapviewer PRIVATE osmp SDL2::SDL2 SDL2::SDL2main ) add_custom_command(TARGET mapviewer POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/res/map.osm $ COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/res/bigmap.osm $ )