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

11 lines
604 B
CMake
Raw Normal View History

add_library(pangu-http pangu_logger.cpp pangu_http.cpp pattern_replace.cpp pangu_web_cache.cpp)
target_link_libraries(pangu-http common http tango-cache-client)
target_link_libraries(pangu-http librdkafka-static ctemplate-static cjson pcre2-static)
target_link_libraries(pangu-http maatframe)
add_executable(test_pattern_replace test_pattern_replace.cpp 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 ./)
add_executable(replace_tool replace_tool.cpp pattern_replace.cpp)
target_link_libraries(replace_tool common pcre2-static)