Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
spdlog
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
spdlog
Commits
fe2fa408
Commit
fe2fa408
authored
Aug 24, 2017
by
Adrian Antonana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmake: add some small comments to point out whats being done
parent
ab250042
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
2 deletions
+10
-2
CMakeLists.txt
CMakeLists.txt
+10
-2
No files found.
CMakeLists.txt
View file @
fe2fa408
### Install ###
# Note: use 'targets_export_name'
#
# Copyright(c) 2015 Ruslan Baratov.
# Distributed under the MIT License (http://opensource.org/licenses/MIT)
...
...
@@ -52,6 +50,7 @@ endif()
#---------------------------------------------------------------------------------------
# Install/export targets and files
#---------------------------------------------------------------------------------------
# set files and directories
set
(
config_install_dir
"
${
CMAKE_INSTALL_LIBDIR
}
/cmake/
${
PROJECT_NAME
}
"
)
set
(
include_install_dir
"
${
CMAKE_INSTALL_INCLUDEDIR
}
"
)
set
(
pkgconfig_install_dir
"
${
CMAKE_INSTALL_LIBDIR
}
/pkgconfig"
)
...
...
@@ -61,34 +60,41 @@ set(pkg_config "${CMAKE_BINARY_DIR}/${PROJECT_NAME}.pc")
set
(
targets_export_name
"
${
PROJECT_NAME
}
Targets"
)
set
(
namespace
"
${
PROJECT_NAME
}
::"
)
# generate package version file
include
(
CMakePackageConfigHelpers
)
write_basic_package_version_file
(
"
${
version_config
}
"
COMPATIBILITY SameMajorVersion
)
# configure pkg config file
configure_file
(
"cmake/spdlog.pc.in"
"
${
pkg_config
}
"
@ONLY
)
# install targets
install
(
TARGETS spdlog
EXPORT
"
${
targets_export_name
}
"
INCLUDES DESTINATION
"
${
include_install_dir
}
"
)
# install headers
install
(
DIRECTORY
"
${
HEADER_BASE
}
/
${
PROJECT_NAME
}
"
DESTINATION
"
${
include_install_dir
}
"
)
# install project version file
install
(
FILES
"
${
version_config
}
"
DESTINATION
"
${
config_install_dir
}
"
)
# install pkg config file
install
(
FILES
"
${
pkg_config
}
"
DESTINATION
"
${
pkgconfig_install_dir
}
"
)
# install project config file
install
(
EXPORT
"
${
targets_export_name
}
"
NAMESPACE
"
${
namespace
}
"
...
...
@@ -96,12 +102,14 @@ install(
FILE
${
project_config
}
)
# export build directory config file
export
(
EXPORT
${
targets_export_name
}
NAMESPACE
"
${
namespace
}
"
FILE
${
project_config
}
)
# register project in CMake user registry
export
(
PACKAGE
${
PROJECT_NAME
}
)
file
(
GLOB_RECURSE spdlog_include_SRCS
"
${
HEADER_BASE
}
/*.h"
)
...
...
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