Commit 9fca0b20 authored by Martin Green's avatar Martin Green

Add CMake option for conditional installation

parent c4438966
...@@ -53,6 +53,7 @@ option(SPDLOG_BUILD_EXAMPLES "Build examples" ${SPDLOG_MASTER_PROJECT}) ...@@ -53,6 +53,7 @@ option(SPDLOG_BUILD_EXAMPLES "Build examples" ${SPDLOG_MASTER_PROJECT})
option(SPDLOG_BUILD_BENCH "Build benchmarks (Requires https://github.com/google/benchmark.git to be installed)" OFF) option(SPDLOG_BUILD_BENCH "Build benchmarks (Requires https://github.com/google/benchmark.git to be installed)" OFF)
option(SPDLOG_BUILD_TESTS "Build tests" ${SPDLOG_MASTER_PROJECT}) option(SPDLOG_BUILD_TESTS "Build tests" ${SPDLOG_MASTER_PROJECT})
option(SPDLOG_FMT_EXTERNAL "Use external fmt library instead of bundled" OFF) option(SPDLOG_FMT_EXTERNAL "Use external fmt library instead of bundled" OFF)
option(SPDLOG_INSTALL "Generate the install target." ${SPDLOG_MASTER_PROJECT})
if(SPDLOG_FMT_EXTERNAL AND NOT TARGET fmt::fmt) if(SPDLOG_FMT_EXTERNAL AND NOT TARGET fmt::fmt)
find_package(fmt REQUIRED CONFIG) find_package(fmt REQUIRED CONFIG)
...@@ -88,59 +89,60 @@ endif() ...@@ -88,59 +89,60 @@ endif()
#--------------------------------------------------------------------------------------- #---------------------------------------------------------------------------------------
# Install/export targets and files # Install/export targets and files
#--------------------------------------------------------------------------------------- #---------------------------------------------------------------------------------------
# set files and directories if(SPDLOG_INSTALL)
set(config_install_dir "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}") # set files and directories
set(include_install_dir "${CMAKE_INSTALL_INCLUDEDIR}") set(config_install_dir "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}")
set(pkgconfig_install_dir "${CMAKE_INSTALL_LIBDIR}/pkgconfig") set(include_install_dir "${CMAKE_INSTALL_INCLUDEDIR}")
set(version_config "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake") set(pkgconfig_install_dir "${CMAKE_INSTALL_LIBDIR}/pkgconfig")
set(project_config "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake") set(version_config "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake")
set(targets_config "${PROJECT_NAME}Targets.cmake") set(project_config "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}Config.cmake")
set(pkg_config "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc") set(targets_config "${PROJECT_NAME}Targets.cmake")
set(targets_export_name "${PROJECT_NAME}Targets") set(pkg_config "${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}.pc")
set(namespace "${PROJECT_NAME}::") set(targets_export_name "${PROJECT_NAME}Targets")
set(namespace "${PROJECT_NAME}::")
# generate package version file
include(CMakePackageConfigHelpers) # generate package version file
write_basic_package_version_file( include(CMakePackageConfigHelpers)
"${version_config}" COMPATIBILITY SameMajorVersion write_basic_package_version_file(
) "${version_config}" COMPATIBILITY SameMajorVersion
)
# configure pkg config file
configure_file("cmake/spdlog.pc.in" "${pkg_config}" @ONLY) # configure pkg config file
# configure spdlogConfig.cmake file configure_file("cmake/spdlog.pc.in" "${pkg_config}" @ONLY)
configure_file("cmake/Config.cmake.in" "${project_config}" @ONLY) # configure spdlogConfig.cmake file
configure_file("cmake/Config.cmake.in" "${project_config}" @ONLY)
# install targets
install( # install targets
TARGETS spdlog install(
EXPORT "${targets_export_name}" TARGETS spdlog
) EXPORT "${targets_export_name}"
)
# install headers
install( # install headers
DIRECTORY "${HEADER_BASE}/${PROJECT_NAME}" install(
DESTINATION "${include_install_dir}" DIRECTORY "${HEADER_BASE}/${PROJECT_NAME}"
) DESTINATION "${include_install_dir}"
)
# install project config and version file
install( # install project config and version file
FILES "${project_config}" "${version_config}" install(
DESTINATION "${config_install_dir}" FILES "${project_config}" "${version_config}"
) DESTINATION "${config_install_dir}"
)
# install pkg config file
install( # install pkg config file
FILES "${pkg_config}" install(
DESTINATION "${pkgconfig_install_dir}" FILES "${pkg_config}"
) DESTINATION "${pkgconfig_install_dir}"
)
# install targets config file
install( # install targets config file
EXPORT "${targets_export_name}" install(
NAMESPACE "${namespace}" EXPORT "${targets_export_name}"
DESTINATION "${config_install_dir}" NAMESPACE "${namespace}"
FILE ${targets_config} DESTINATION "${config_install_dir}"
) FILE ${targets_config}
)
# export build directory targets file # export build directory targets file
export( export(
...@@ -152,5 +154,7 @@ export( ...@@ -152,5 +154,7 @@ export(
# register project in CMake user registry # register project in CMake user registry
export(PACKAGE ${PROJECT_NAME}) export(PACKAGE ${PROJECT_NAME})
endif()
file(GLOB_RECURSE spdlog_include_SRCS "${HEADER_BASE}/*.h") file(GLOB_RECURSE spdlog_include_SRCS "${HEADER_BASE}/*.h")
add_custom_target(spdlog_headers_for_ide SOURCES ${spdlog_include_SRCS}) add_custom_target(spdlog_headers_for_ide SOURCES ${spdlog_include_SRCS})
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment