cpp-unity-template/test/CMakeLists.txt

8 lines
212 B
CMake
Raw Permalink Normal View History

2023-09-15 17:12:51 -05:00
find_package(unity REQUIRED)
include_directories(${CMAKE_SOURCE_DIR}/src)
add_executable(testing
test.cpp
)
set_target_properties(testing PROPERTIES LINKER_LANGUAGE CXX)
target_link_libraries(testing unity)