cmake_minimum_required(VERSION 3.10...3.15) # Setting up project project(curlcpp VERSION 3.1 DESCRIPTION "An object oriented C++ wrapper for CURL (libcurl)" HOMEPAGE_URL "https://github.com/JosephP91/curlcpp/" LANGUAGES CXX) # For the pkg-config file. Please read https://github.com/jtojnar/cmake-snips set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/CMakeScripts") include(JoinPaths) include(GNUInstallDirs) option(BUILD_TEST "Build Tests" OFF) # if using an older VERSION of curl ocsp stapling can be disabled set(CURL_MIN_VERSION "7.34.0") set(DEFAULT_BUILD_TYPE "Release") if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) message(STATUS "Setting build type to '${DEFAULT_BUILD_TYPE}' as none was specified.") set(CMAKE_BUILD_TYPE "${DEFAULT_BUILD_TYPE}" CACHE STRING "Choose the type of build." FORCE) # Set the possible values of build type for cmake-gui set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo") endif() include(CheckIPOSupported) check_ipo_supported(RESULT IPO_SUPPORTED OUTPUT ERROR) if(IPO_SUPPORTED) message(STATUS "IPO / LTO supported, will enable for targets in release build type") else() message(STATUS "IPO / LTO not supported: <${ERROR}>, will not enable") endif() option(CURLCPP_USE_PKGCONFIG "Use pkg-config to find libcurl. When off, find_package() will be used" OFF) # Set up source directories add_subdirectory(src) # Set up test directory. if(BUILD_TEST) add_subdirectory(test) endif() # Install install(EXPORT curlcppTargets NAMESPACE curlcpp:: DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/curlcpp) include(CMakePackageConfigHelpers) configure_package_config_file(CMake/curlcppConfig.cmake.in "${PROJECT_BINARY_DIR}/curlcppConfig.cmake" INSTALL_DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/curlcpp") install(FILES ${PROJECT_BINARY_DIR}/curlcppConfig.cmake DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/curlcpp) join_paths(libdir_for_pc_file "\${exec_prefix}" "${CMAKE_INSTALL_LIBDIR}") join_paths(includedir_for_pc_file "\${prefix}" "${CMAKE_INSTALL_INCLUDEDIR}") configure_file("${PROJECT_SOURCE_DIR}/src/curlcpp.pc.in" "${PROJECT_BINARY_DIR}/src/curlcpp.pc" @ONLY) install(FILES "${PROJECT_BINARY_DIR}/src/curlcpp.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig/")