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/pangu-http/CMakeLists.txt

12 lines
659 B
CMake
Raw Normal View History

2018-10-18 15:02:23 +08:00
add_library(pangu-http src/pangu_logger.cpp src/pangu_http.cpp src/pattern_replace.cpp src/pangu_web_cache.cpp)
target_link_libraries(pangu-http PUBLIC common http tango-cache-client)
target_link_libraries(pangu-http PUBLIC librdkafka ctemplate-static cjson pcre2-static pthread)
target_link_libraries(pangu-http PUBLIC maatframe)
2018-10-18 15:02:23 +08:00
add_executable(test_pattern_replace src/test_pattern_replace.cpp src/pattern_replace.cpp)
2018-09-28 15:41:29 +08:00
target_link_libraries(test_pattern_replace common gtest pcre2-static)
file(COPY test_data DESTINATION ./)
2018-10-18 15:02:23 +08:00
add_executable(replace_tool src/replace_tool.cpp src/pattern_replace.cpp)
target_link_libraries(replace_tool common pcre2-static)