cpp-algo-cases/chapter_graph/CMakeLists.txt

6 lines
282 B
CMake
Raw Normal View History

2024-02-20 16:13:23 +08:00
add_executable(graph_bfs graph_bfs.cpp)
add_executable(graph_dfs graph_dfs.cpp)
# add_executable(graph_adjacency_list graph_adjacency_list.cpp)
add_executable(graph_adjacency_list_test graph_adjacency_list_test.cpp)
add_executable(graph_adjacency_matrix graph_adjacency_matrix.cpp)