This repository has been archived on 2020-12-30. You can view files and clone it, but cannot push or open issues or pull requests.
2018-01-11 23:20:46 +01:00
|
|
|
|
|
|
|
# /usr/include/gtest
|
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
INCLUDE_DIRECTORIES(/usr/include/gtest)
|
|
|
|
|
|
|
|
set(SOURCES
|
|
|
|
core/test_tree.cpp
|
2018-02-13 15:31:13 +01:00
|
|
|
core/test_rab.cpp
|
2018-01-11 23:20:46 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
add_executable(runUnitTests ${SOURCES})
|
2018-02-13 15:31:13 +01:00
|
|
|
target_link_libraries(runUnitTests gtest gtest_main core)
|
2018-01-11 23:20:46 +01:00
|
|
|
add_test(runUnitTests runUnitTests)
|