20 lines
248 B
CMake
20 lines
248 B
CMake
|
|
||
|
# TEST_RUNNER
|
||
|
add_executable(simple_test
|
||
|
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.
|
||
|
|