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.
NetworkPacketComposer/test/CMakeLists.txt

16 lines
300 B
CMake
Raw Normal View History

2018-01-11 23:20:46 +01:00
# /usr/include/gtest
enable_testing()
INCLUDE_DIRECTORIES(/usr/include/gtest)
set(SOURCES
core/test_tree.cpp
core/test_rab.cpp
core/test_model.cpp
2018-01-11 23:20:46 +01:00
)
add_executable(runUnitTests ${SOURCES})
target_link_libraries(runUnitTests gtest gtest_main core)
2018-01-11 23:20:46 +01:00
add_test(runUnitTests runUnitTests)