graph-algorithms/min_spanning_tree/prim/CMakeLists.txt

7 lines
132 B
Text
Raw Normal View History

2024-07-30 18:16:33 +02:00
cmake_minimum_required(VERSION 3.10)
project(prim)
add_executable(prim
../../weighted_graph.cpp
../../weighted_graph.h
prim.cpp)