2023-09-19 14:11:18 -05:00
|
|
|
find_package(unity REQUIRED)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/src)
|
2023-09-14 14:20:21 -05:00
|
|
|
add_executable(testing
|
|
|
|
./test.cpp
|
|
|
|
)
|
|
|
|
set_target_properties(testing PROPERTIES LINKER_LANGUAGE CXX)
|
|
|
|
target_link_libraries(testing unity)
|