Kylin/HttpProxy/CMakeLists.txt

18 lines
489 B
CMake
Raw Normal View History

2023-07-21 11:53:19 +08:00
add_library(HttpProxy
NetworkUtility.h NetworkUtility.cpp
2023-07-21 15:28:59 +08:00
ProxyHttpSession.h ProxyHttpSession.cpp
ProxyListener.h ProxyListener.cpp
ProxyTcpSession.h ProxyTcpSession.cpp
TemplateMatchs.h TemplateMatchs.cpp
TemplateSegmentRule.h TemplateSegmentRule.cpp
UrlRouter.h UrlRouter.cpp
UrlRouterPrivate.h UrlRouterPrivate.cpp
2023-07-21 11:53:19 +08:00
)
target_include_directories(HttpProxy
INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}
)
target_link_libraries(HttpProxy
PUBLIC Universal
)