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
stellar-stellar/src/packet/test/CMakeLists.txt

33 lines
1.1 KiB
CMake
Raw Normal View History

2023-12-22 14:54:25 +08:00
add_executable(gtest_packet gtest_packet.cpp)
target_link_libraries(gtest_packet packet gtest)
2024-02-21 11:14:21 +08:00
add_executable(gtest_udp_utils gtest_udp_utils.cpp)
target_link_libraries(gtest_udp_utils packet gtest)
2024-01-03 09:57:06 +08:00
2024-02-21 11:49:20 +08:00
add_executable(gtest_tcp_utils gtest_tcp_utils.cpp)
target_link_libraries(gtest_tcp_utils packet gtest)
2023-12-22 14:54:25 +08:00
2024-02-21 14:34:34 +08:00
add_executable(gtest_ipv4_utils gtest_ipv4_utils.cpp)
target_link_libraries(gtest_ipv4_utils packet gtest)
2024-01-03 09:57:06 +08:00
2024-02-21 15:06:48 +08:00
add_executable(gtest_ipv6_utils gtest_ipv6_utils.cpp)
target_link_libraries(gtest_ipv6_utils packet gtest)
2024-01-11 16:46:33 +08:00
add_executable(gtest_mpls_utils gtest_mpls_utils.cpp)
target_link_libraries(gtest_mpls_utils packet gtest)
add_executable(gtest_eth_utils gtest_eth_utils.cpp)
target_link_libraries(gtest_eth_utils packet gtest)
add_executable(gtest_packet_frag gtest_packet_frag.cpp)
target_link_libraries(gtest_packet_frag packet gtest)
2023-12-29 15:15:18 +08:00
2023-12-22 14:54:25 +08:00
include(GoogleTest)
gtest_discover_tests(gtest_packet)
2024-02-21 11:14:21 +08:00
gtest_discover_tests(gtest_udp_utils)
2024-02-21 11:49:20 +08:00
gtest_discover_tests(gtest_tcp_utils)
2024-02-21 14:34:34 +08:00
gtest_discover_tests(gtest_ipv4_utils)
2024-02-21 15:06:48 +08:00
gtest_discover_tests(gtest_ipv6_utils)
gtest_discover_tests(gtest_mpls_utils)
gtest_discover_tests(gtest_eth_utils)
gtest_discover_tests(gtest_packet_frag)