graph-algorithms/top_order/CMakeLists.txt
2024-07-24 15:54:43 +02:00

7 lines
127 B
CMake

cmake_minimum_required(VERSION 3.10)
project(top_order)
add_executable(top_order
../digraph.cpp
../digraph.h
top_order.cpp)