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.
|
|
|
|
|