2023-09-10 16:29:34 -05:00
|
|
|
include_directories("${CMAKE_CURRENT_SOURCE_DIR}")
|
|
|
|
add_executable(testing
|
2023-09-10 17:36:59 -05:00
|
|
|
./test-main.cpp
|
|
|
|
./test-algorithm.cpp
|
2023-09-10 16:29:34 -05:00
|
|
|
../src/algorithm.cpp
|
|
|
|
)
|
|
|
|
set_target_properties(testing PROPERTIES LINKER_LANGUAGE CXX)
|