2023-09-15 16:34:07 -05:00
|
|
|
find_package(unity REQUIRED)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/src)
|
2023-09-10 16:29:34 -05:00
|
|
|
add_executable(testing
|
2023-09-15 16:34:07 -05:00
|
|
|
test.cpp
|
|
|
|
../src/algorithm.cpp
|
2023-09-10 16:29:34 -05:00
|
|
|
)
|
|
|
|
set_target_properties(testing PROPERTIES LINKER_LANGUAGE CXX)
|
2023-09-15 12:43:32 -05:00
|
|
|
target_link_libraries(testing unity)
|