1 Star 1 Fork 0

dexin/udpreplay

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CMakeLists.txt 673 Bytes
一键复制 编辑 原始数据 按行查看 历史
cmake_minimum_required(VERSION 3.2)
project(udpreplay CXX)
set(CMAKE_CXX_STANDARD 11)
add_executable(udpreplay src/udpreplay.cpp)
target_compile_options(udpreplay PRIVATE -Wall -Wextra -Wpedantic -Werror)
target_link_libraries(udpreplay pcap)
install(TARGETS udpreplay DESTINATION bin/)
enable_testing()
add_test(constant-interval ${CMAKE_SOURCE_DIR}/test/constant-interval.expect)
add_test(constant-interval-ge1 ${CMAKE_SOURCE_DIR}/test/constant-interval-ge1.expect)
add_test(high-speed ${CMAKE_SOURCE_DIR}/test/high-speed.expect)
add_test(low-speed ${CMAKE_SOURCE_DIR}/test/low-speed.expect)
add_test(normal-speed ${CMAKE_SOURCE_DIR}/test/normal-speed.expect)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dustinksi/udpreplay.git
git@gitee.com:dustinksi/udpreplay.git
dustinksi
udpreplay
udpreplay
master

搜索帮助