mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-06-17 07:38:49 +08:00
8 lines
210 B
CMake
8 lines
210 B
CMake
add_library(libqueue OBJECT queue.h queue.cpp)
|
|
add_executable( test_queue
|
|
test_queue.cpp
|
|
)
|
|
target_link_libraries(test_queue PUBLIC libqueue)
|
|
|
|
install(TARGETS test_queue DESTINATION "bin/data_structures")
|