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-tfe/plugin/business/doh/CMakeLists.txt
luwenpeng cd26e3e6c1 TSG-1531 TFE 新增 DOH 插件
1.DOH 协议解析
2.DOH 协议还原
3.DOH POST请求 early response
4.DOH 策略扫描
5.tfe plugin 支持多个 bussiness 插件调用
6.Maat_feather 的创建从 pangu 剥离(涉及pangu/doh/ssl-policy)
7.增加 kafka 日志
8.增加测试用例
2020-07-06 16:16:21 +08:00

9 lines
390 B
CMake

add_library(doh src/doh.cpp src/dns.cpp src/logger.cpp src/pub.cpp)
target_link_libraries(doh PUBLIC cjson)
target_link_libraries(doh PUBLIC maatframe)
target_link_libraries(doh PUBLIC common)
target_link_libraries(doh PUBLIC http)
add_executable(dns_test test/dns_test.cpp src/dns.cpp src/pub.cpp)
target_link_libraries(dns_test PUBLIC cjson)
target_link_libraries(dns_test PUBLIC common)