Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
G
glog
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
glog
Commits
780efcc8
Commit
780efcc8
authored
Jan 08, 2016
by
Sergiu Dotenco
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cmake: allow to refer to imported glog target as glog::glog
parent
4d391fe6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
33 deletions
+9
-33
CMakeLists.txt
CMakeLists.txt
+6
-26
glog-config.cmake.in
glog-config.cmake.in
+3
-7
No files found.
CMakeLists.txt
View file @
780efcc8
...
...
@@ -551,44 +551,24 @@ install (TARGETS glog
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib
)
# Build tree config
set
(
glog_INCLUDE_DIR
${
CMAKE_CURRENT_SOURCE_DIR
}
/src
)
set
(
glog_PACKAGE_DEPS
)
if
(
gflags_FOUND
)
set
(
glog_PACKAGE_DEPS
"
include (CMakeFindDependencyMacro)
find_dependency (gflags
${
gflags_VERSION
}
)
"
)
set
(
gflags_DEPENDENCY
"find_dependency (gflags
${
gflags_VERSION
}
)"
)
endif
(
gflags_FOUND
)
configure_package_config_file
(
glog-config.cmake.in
${
CMAKE_CURRENT_BINARY_DIR
}
/glog-config.cmake
INSTALL_DESTINATION
lib/cmake/glog PATH_VARS glog_INCLUDE_DIR
${
CMAKE_CURRENT_BINARY_DIR
}
/glog-config.cmake
INSTALL_DESTINATION lib/cmake/glog
NO_CHECK_REQUIRED_COMPONENTS_MACRO
)
# The version file is the same both for build tree and install mode config
write_basic_package_version_file
(
glog-config-version.cmake VERSION
${
GLOG_VERSION
}
COMPATIBILITY SameMajorVersion
)
# Install config
set
(
glog_INCLUDE_DIR include
)
configure_package_config_file
(
glog-config.cmake.in
${
CMAKE_CURRENT_BINARY_DIR
}${
CMAKE_FILES_DIRECTORY
}
/glog-config.cmake
INSTALL_DESTINATION lib/cmake/glog PATH_VARS glog_INCLUDE_DIR
NO_CHECK_REQUIRED_COMPONENTS_MACRO
)
export
(
TARGETS glog FILE glog-targets.cmake
)
export
(
TARGETS glog NAMESPACE glog:: FILE glog-targets.cmake
)
export
(
PACKAGE glog
)
install
(
FILES
${
CMAKE_CURRENT_BINARY_DIR
}
${
CMAKE_FILES_DIRECTORY
}
/glog-config.cmake
${
CMAKE_CURRENT_BINARY_DIR
}
/glog-config.cmake
${
CMAKE_CURRENT_BINARY_DIR
}
/glog-config-version.cmake
DESTINATION lib/cmake/glog
)
install
(
EXPORT glog-targets DESTINATION lib/cmake/glog
)
install
(
EXPORT glog-targets
NAMESPACE glog::
DESTINATION lib/cmake/glog
)
glog-config.cmake.in
View file @
780efcc8
@PACKAGE_INIT@
include ("${CMAKE_CURRENT_LIST_DIR}/glog-targets.cmake")
set_and_check (glog_INCLUDE_DIR "@PACKAGE_glog_INCLUDE_DIR@")
@glog_PACKAGE_DEPS@
include (CMakeFindDependencyMacro)
set (glog_LIBRARY glog)
@gflags_DEPENDENCY@
set (glog_LIBRARIES ${glog_LIBRARY})
set (glog_INCLUDE_DIRS ${glog_INCLUDE_DIR})
include ("${CMAKE_CURRENT_LIST_DIR}/glog-targets.cmake")
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