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
424 B
16 lines
424 B
cmake_minimum_required(VERSION 3.10)
|
|
project(hello_algo C)
|
|
|
|
set(CMAKE_C_STANDARD 11)
|
|
|
|
include_directories(./include)
|
|
|
|
add_subdirectory(chapter_computational_complexity)
|
|
add_subdirectory(chapter_array_and_linkedlist)
|
|
add_subdirectory(chapter_stack_and_queue)
|
|
add_subdirectory(chapter_heap)
|
|
add_subdirectory(chapter_hashing)
|
|
add_subdirectory(chapter_tree)
|
|
add_subdirectory(chapter_searching)
|
|
add_subdirectory(chapter_sorting)
|