waitui/tests/library/list/CMakeLists.txt
Rick Barenthin 65b9f65b9d
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing
feat(list): update list implementation
This the generic implementation is split into seperated
files now and list test has been updated.

This requires a change to the build image and
an update of the pipeline definition.
2022-07-26 22:32:01 +02:00

16 lines
406 B
CMake

add_executable(waitui-test_list)
target_sources(waitui-test_list
PRIVATE
"test_list.c"
)
target_link_libraries(waitui-test_list PRIVATE list)
add_test(NAME waitui-test_list COMMAND waitui-test_list)
if(ENABLE_TEST_COVERAGE)
target_compile_options(list PUBLIC -O0 -g -fprofile-arcs -ftest-coverage)
target_link_options(list PUBLIC -fprofile-arcs -ftest-coverage)
endif()