mirror of
https://github.com/wqking/eventpp.git
synced 2024-12-26 15:52:40 +08:00
Merge pull request #40 from rotolof/install_option
Enable or disable installation
This commit is contained in:
commit
a135c761b4
@ -12,59 +12,74 @@ target_include_directories(
|
||||
|
||||
add_library(eventpp::eventpp ALIAS eventpp)
|
||||
|
||||
# Checks if eventpp is the main project or if it is
|
||||
# being built as a subproject (using add_subdirectory/FetchContent).
|
||||
set(MAIN_PROJECT OFF)
|
||||
if (CMAKE_CURRENT_SOURCE_DIR STREQUAL CMAKE_SOURCE_DIR)
|
||||
set(MAIN_PROJECT ON)
|
||||
endif()
|
||||
|
||||
# Installation
|
||||
# ------------
|
||||
include(GNUInstallDirs)
|
||||
if (POLICY CMP0077)
|
||||
# Allow CMake 3.13+ to override options when using add_subdirectory/FetchContent.
|
||||
cmake_policy(SET CMP0077 NEW)
|
||||
endif (POLICY CMP0077)
|
||||
|
||||
# Install the library
|
||||
install(
|
||||
option(EVENTPP_INSTALL "Enable installation" ${MAIN_PROJECT})
|
||||
|
||||
if (EVENTPP_INSTALL)
|
||||
# Install the library
|
||||
install(
|
||||
TARGETS eventpp
|
||||
EXPORT eventppTargets
|
||||
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
|
||||
)
|
||||
)
|
||||
|
||||
# Install the headers
|
||||
install(
|
||||
# Install the headers
|
||||
install(
|
||||
DIRECTORY include/
|
||||
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
|
||||
)
|
||||
)
|
||||
|
||||
# (Generate and) install the target import file
|
||||
install(
|
||||
# (Generate and) install the target import file
|
||||
install(
|
||||
EXPORT eventppTargets
|
||||
NAMESPACE eventpp::
|
||||
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/eventpp
|
||||
)
|
||||
)
|
||||
|
||||
# Generate the package version file
|
||||
include(CMakePackageConfigHelpers)
|
||||
write_basic_package_version_file(
|
||||
# Generate the package version file
|
||||
include(CMakePackageConfigHelpers)
|
||||
write_basic_package_version_file(
|
||||
${CMAKE_CURRENT_BINARY_DIR}/eventppConfigVersion.cmake
|
||||
VERSION ${PROJECT_VERSION}
|
||||
COMPATIBILITY AnyNewerVersion
|
||||
)
|
||||
)
|
||||
|
||||
# Generate the package configuration file, that allows other
|
||||
# CMake projects to find the library with find_package()
|
||||
configure_package_config_file(
|
||||
# Generate the package configuration file, that allows other
|
||||
# CMake projects to find the library with find_package()
|
||||
configure_package_config_file(
|
||||
cmake/eventppConfig.cmake.in
|
||||
${CMAKE_CURRENT_BINARY_DIR}/eventppConfig.cmake
|
||||
INSTALL_DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/eventpp
|
||||
)
|
||||
)
|
||||
|
||||
# Install the package version and configuration files
|
||||
install(
|
||||
# Install the package version and configuration files
|
||||
install(
|
||||
FILES
|
||||
${CMAKE_CURRENT_BINARY_DIR}/eventppConfig.cmake
|
||||
${CMAKE_CURRENT_BINARY_DIR}/eventppConfigVersion.cmake
|
||||
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/eventpp
|
||||
)
|
||||
)
|
||||
|
||||
# Install readme and license
|
||||
install(
|
||||
# Install readme and license
|
||||
install(
|
||||
FILES
|
||||
readme.md
|
||||
license
|
||||
DESTINATION ${CMAKE_INSTALL_DATADIR}/eventpp
|
||||
)
|
||||
)
|
||||
endif()
|
Loading…
x
Reference in New Issue
Block a user