9 lines
459 B
CMake
9 lines
459 B
CMake
add_library(pangu-http pangu_logger.cpp pangu_http.cpp pattern_replace.cpp)
|
|
target_link_libraries(pangu-http common http)
|
|
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)
|
|
target_link_libraries(test_pattern_replace common libevent-static gtest pcre2-static)
|
|
file(COPY test_data DESTINATION ./)
|