Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
S
spdlog
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
spdlog
Commits
9fca0b20
Commit
9fca0b20
authored
Feb 06, 2019
by
Martin Green
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add CMake option for conditional installation
parent
c4438966
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
53 deletions
+57
-53
CMakeLists.txt
CMakeLists.txt
+57
-53
No files found.
CMakeLists.txt
View file @
9fca0b20
...
@@ -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
}
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment