cmake_cpputest_template/tests/simple_test/CMakeLists.txt

19 lines
244 B
CMake
Raw Normal View History

2024-03-13 05:42:14 +00:00
# TEST_RUNNER
2024-03-15 20:47:06 +00:00
add_library(simple_test
2024-03-13 05:42:14 +00:00
simple_test.cpp
)
target_link_libraries(simple_test
${CPPUTEST_LDFLAGS}
)
# TEST_DIRS
# INCLUDE_DIRS
# Build unit tests and link with other sources.
# Run the tests once build finished.