You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
459 B
16 lines
459 B
2 years ago
|
cmake_minimum_required(VERSION 3.10)
|
||
|
project(hello_algo CXX)
|
||
|
|
||
|
set(CMAKE_CXX_STANDARD 11)
|
||
|
|
||
|
include_directories(./include)
|
||
|
|
||
|
add_subdirectory(chapter_tree)
|
||
|
add_subdirectory(chapter_stack_and_queue)
|
||
|
add_subdirectory(chapter_sorting)
|
||
|
add_subdirectory(chapter_searching)
|
||
|
add_subdirectory(chapter_heap)
|
||
|
add_subdirectory(chapter_graph)
|
||
|
add_subdirectory(chapter_hashing)
|
||
|
add_subdirectory(chapter_computational_complexity)
|
||
|
add_subdirectory(chapter_array_and_linkedlist)
|