Files
cpp-project-template/third_party/prometheus/push/CMakeLists.txt
tqcq c68893bace
Some checks failed
sm-rpc / build (Debug, aarch64-linux-gnu) (push) Failing after 29s
sm-rpc / build (Debug, arm-linux-gnueabihf) (push) Failing after 16s
sm-rpc / build (Debug, host.gcc) (push) Failing after 11s
sm-rpc / build (Debug, mipsel-linux-gnu) (push) Failing after 12s
sm-rpc / build (Release, aarch64-linux-gnu) (push) Failing after 11s
sm-rpc / build (Release, arm-linux-gnueabihf) (push) Failing after 11s
sm-rpc / build (Release, host.gcc) (push) Failing after 12s
sm-rpc / build (Release, mipsel-linux-gnu) (push) Failing after 16s
feat add spdlog
2025-08-22 18:22:57 +08:00

92 lines
2.1 KiB
CMake

find_package(CURL REQUIRED)
add_library(push
src/gateway.cc
src/detail/curl_wrapper.cc
src/detail/curl_wrapper.h
src/detail/label_encoder.cc
src/detail/label_encoder.h
)
add_library(${PROJECT_NAME}::push ALIAS push)
target_compile_features(push
PUBLIC
cxx_std_11
)
target_link_libraries(push
PUBLIC
${PROJECT_NAME}::core
CURL::libcurl
PRIVATE
${PROJECT_NAME}::util
Threads::Threads
$<$<AND:$<BOOL:UNIX>,$<NOT:$<BOOL:APPLE>>>:rt>
)
target_include_directories(push
PUBLIC
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/include>
)
set_target_properties(push
PROPERTIES
OUTPUT_NAME ${PROJECT_NAME}-push
DEFINE_SYMBOL PROMETHEUS_CPP_PUSH_EXPORTS
VERSION "${PROJECT_VERSION}"
SOVERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}"
)
generate_export_header(push
BASE_NAME ${PROJECT_NAME}-push
EXPORT_FILE_NAME include/prometheus/detail/push_export.h
)
install(
TARGETS push
EXPORT ${PROJECT_NAME}-targets
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
INCLUDES DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
)
install(
DIRECTORY include/ ${CMAKE_CURRENT_BINARY_DIR}/include/
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
)
if(GENERATE_PKGCONFIG)
set(PKGCONFIG_LIBS)
set(PKGCONFIG_REQUIRES)
string(APPEND PKGCONFIG_REQUIRES " libcurl")
configure_file(
${PROJECT_SOURCE_DIR}/cmake/prometheus-cpp-push.pc.in
${CMAKE_CURRENT_BINARY_DIR}/prometheus-cpp-push.pc
@ONLY
)
install(
FILES ${CMAKE_CURRENT_BINARY_DIR}/prometheus-cpp-push.pc
DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig
)
unset(PKGCONFIG_LIBS)
unset(PKGCONFIG_REQUIRES)
endif()
if(ENABLE_TESTING)
add_library(push_internal_headers INTERFACE)
add_library(${PROJECT_NAME}::push_internal_headers ALIAS push_internal_headers)
target_include_directories(push_internal_headers INTERFACE src)
target_link_libraries(push_internal_headers INTERFACE ${PROJECT_NAME}::push)
add_subdirectory(tests)
endif()