Files
C-Plus-Plus/data_structures/queue/CMakeLists.txt
2020-06-06 12:25:51 -04:00

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")