graph-algorithms/min_spanning_tree/prim/CMakeLists.txt
2024-07-30 18:16:33 +02:00

6 lines
132 B
CMake

cmake_minimum_required(VERSION 3.10)
project(prim)
add_executable(prim
../../weighted_graph.cpp
../../weighted_graph.h
prim.cpp)