-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix issues with rpath, message cleanup, checkpoint better python layer
Signed-off-by: Kimball Thurston <[email protected]>
- Loading branch information
Showing
10 changed files
with
380 additions
and
89 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 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
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
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,23 @@ | ||
|
||
### The autoconf setup for this folder generates a PyIlmBaseConfig.h file | ||
### but no source actually uses that, so let's elide that for now | ||
|
||
# The main export of the configuration - This is the | ||
# moral equivalent of a pkg-config file for cmake | ||
# and replaces the Find*.cmake of the "old" cmake | ||
if(PYILMBASE_BUILD_SUPPORT_LIBRARIES) | ||
include(CMakePackageConfigHelpers) | ||
write_basic_package_version_file("${PROJECT_NAME}ConfigVersion.cmake" | ||
VERSION ${PYILMBASE_VERSION} | ||
COMPATIBILITY SameMajorVersion | ||
) | ||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}ConfigVersion.cmake | ||
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME} | ||
) | ||
install(EXPORT ${PROJECT_NAME} | ||
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME} | ||
FILE ${PROJECT_NAME}Config.cmake | ||
NAMESPACE ${PROJECT_NAME}:: | ||
EXPORT_LINK_INTERFACE_LIBRARIES | ||
) | ||
endif() |
Oops, something went wrong.