This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
tango-tsg-service-chaining-…/common/test/CMakeLists.txt

23 lines
1.0 KiB
CMake
Raw Normal View History

2023-01-10 16:30:34 +08:00
###############################################################################
# gtest_addr_tuple4
2023-01-10 16:30:34 +08:00
###############################################################################
add_executable(gtest_addr_tuple4 gtest_addr_tuple4.cpp)
target_include_directories(gtest_addr_tuple4 PUBLIC ${CMAKE_SOURCE_DIR}/common/include)
target_link_libraries(gtest_addr_tuple4 common gtest)
2023-01-10 16:30:34 +08:00
###############################################################################
# gtest_session_table
2023-01-10 16:30:34 +08:00
###############################################################################
add_executable(gtest_session_table gtest_session_table.cpp)
target_include_directories(gtest_session_table PUBLIC ${CMAKE_SOURCE_DIR}/common/include)
target_link_libraries(gtest_session_table common gtest)
2023-01-10 16:30:34 +08:00
###############################################################################
# gtest_discover_tests
###############################################################################
include(GoogleTest)
gtest_discover_tests(gtest_addr_tuple4)
gtest_discover_tests(gtest_session_table)