This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
124 additions
and
124 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# - Use CMake's module to help generating relocatable config files | ||
include(CMakePackageConfigHelpers) | ||
|
||
# - Versioning | ||
write_basic_package_version_file( | ||
${CMAKE_CURRENT_BINARY_DIR}/k4LCIOReaderConfigVersion.cmake | ||
VERSION ${k4LCIOReader_VERSION} | ||
COMPATIBILITY SameMajorVersion) | ||
|
||
# - Install time config and target files | ||
configure_package_config_file(${CMAKE_CURRENT_LIST_DIR}/k4LCIOReaderConfig.cmake.in | ||
"${PROJECT_BINARY_DIR}/k4LCIOReaderConfig.cmake" | ||
INSTALL_DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/k4LCIOReader" | ||
PATH_VARS | ||
CMAKE_INSTALL_BINDIR | ||
CMAKE_INSTALL_INCLUDEDIR | ||
CMAKE_INSTALL_LIBDIR | ||
) | ||
|
||
# - install and export | ||
install(FILES | ||
"${PROJECT_BINARY_DIR}/k4LCIOReaderConfigVersion.cmake" | ||
"${PROJECT_BINARY_DIR}/k4LCIOReaderConfig.cmake" | ||
DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/k4LCIOReader" | ||
) | ||
install(EXPORT k4LCIOReaderTargets | ||
NAMESPACE k4LCIOReader:: | ||
DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/k4LCIOReader" | ||
) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#ifndef k4LCIOReaderVersion_h | ||
#define k4LCIOReaderVersion_h | ||
#define k4LCIOReader_VERSION @k4LCIOReader_VERSION@ | ||
#endif |
Oops, something went wrong.