1
0
mirror of https://gitlab.com/somespace/dijkstra-shortest-path-algorithm.git synced 2025-01-31 15:41:40 +01:00
dijkstra-shortest-path-algo.../CMakeLists.txt
Martin Schneider 2a5d8d7dbf Initial commit
2020-10-03 15:36:57 +02:00

9 lines
242 B
CMake

cmake_minimum_required(VERSION 3.5)
project(advanced_dijsktra_shortest_path LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_executable(advanced_dijsktra_shortest_path main.cpp graph.cpp shortest_path.cpp)