graph-algorithms/top_order/CMakeLists.txt

7 lines
127 B
CMake
Raw Normal View History

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