Skip to content

Commit 4369f21

Browse files
authored
Add CMakeList
1 parent 7296234 commit 4369f21

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/CMakeLists.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
cmake_minimum_required(VERSION 3.20)
2+
3+
project(DataStructures)
4+
5+
add_executable(DataStructures
6+
#"simple_search.cpp"
7+
#"binary_search.cpp"
8+
#"stack.cpp"
9+
#"queue.cpp"
10+
#"bubble_sort.cpp"
11+
#"insertion_sort.cpp"
12+
#"selection_sort.cpp"
13+
#"quick_sort.cpp"
14+
#"shell_sort.cpp"
15+
#"merge_sort.cpp"
16+
#"sequential_list_operations.cpp"
17+
"linked_list_operations.cpp"
18+
)
19+
20+
set_target_properties(DataStructures PROPERTIES CXX_STANDARD 23)

0 commit comments

Comments
 (0)