generated from TDD-Templates/cmake_cpputest_template
11 lines
191 B
CMake
11 lines
191 B
CMake
|
# TEST_RUNNER
|
||
|
add_library(test_Radio
|
||
|
test_Radio.cpp
|
||
|
)
|
||
|
|
||
|
target_link_libraries(test_Radio
|
||
|
${CPPUTEST_LIBRARIES}/libCppUTest.a
|
||
|
${CPPUTEST_LIBRARIES}/libCppUTestExt.a
|
||
|
Radio
|
||
|
)
|