From 0dcb5f5bef76cc00755f4a0e2b53564cb899e41d Mon Sep 17 00:00:00 2001 From: Aman Mehara Date: Sat, 23 Mar 2024 21:46:21 +0530 Subject: [PATCH] :bug: fix: Add CMakeLists.txt for graph_algorithms :gear: --- C++/graph_algorithms/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 C++/graph_algorithms/CMakeLists.txt diff --git a/C++/graph_algorithms/CMakeLists.txt b/C++/graph_algorithms/CMakeLists.txt new file mode 100644 index 0000000..acfb335 --- /dev/null +++ b/C++/graph_algorithms/CMakeLists.txt @@ -0,0 +1,4 @@ +target_sources(programming + PRIVATE + topological_sort.h + topological_sort.cpp)