mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-06-18 01:36:52 +08:00
enable cmake in subfolders of data_structures
This commit is contained in:
11
data_structures/stk/CMakeLists.txt
Normal file
11
data_structures/stk/CMakeLists.txt
Normal file
@@ -0,0 +1,11 @@
|
||||
add_executable( stack
|
||||
stack.cpp
|
||||
main.cpp
|
||||
)
|
||||
add_executable( test_stack
|
||||
stack.cpp
|
||||
test_stack.cpp
|
||||
)
|
||||
install(TARGETS stack DESTINATION "bin/data_structures")
|
||||
install(TARGETS test_stack DESTINATION "bin/data_structures")
|
||||
install(FILES students.txt DESTINATION "bin/data_structures")
|
||||
Reference in New Issue
Block a user