2018-04-19 15:03:49 -04:00
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# CMake config
|
|
|
|
#
|
|
|
|
# protozero unit tests
|
|
|
|
#
|
|
|
|
#-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
set(UNIT_TESTS data_view
|
|
|
|
basic
|
2020-10-16 03:25:52 -04:00
|
|
|
buffer
|
2018-04-19 15:03:49 -04:00
|
|
|
endian
|
|
|
|
exceptions
|
2020-10-16 03:25:52 -04:00
|
|
|
iterators
|
2018-04-19 15:03:49 -04:00
|
|
|
varint
|
|
|
|
zigzag)
|
|
|
|
|
|
|
|
string(REGEX REPLACE "([^;]+)" "test_\\1.cpp" _test_sources "${UNIT_TESTS}")
|
|
|
|
|
|
|
|
add_executable(unit_tests main.cpp ${_test_sources})
|
|
|
|
|
|
|
|
add_test(NAME unit_tests COMMAND unit_tests)
|
|
|
|
|
|
|
|
|
|
|
|
#-----------------------------------------------------------------------------
|