26 lines
1.1 KiB
Text
26 lines
1.1 KiB
Text
# This CMakeLists.txt file handles the creation of files needed by
|
|
# other client projects that use RPLY. Nothing is built by this
|
|
# CMakeLists.txt file. This CMakeLists.txt file must be processed by
|
|
# CMake after all the other CMakeLists.txt files in the RPLY tree,
|
|
# which is why the SUBDIRS(CMake/export) command is at the end
|
|
# of the top level CMakeLists.txt file.
|
|
|
|
# Save the compiler settings so another project can import them.
|
|
INCLUDE(${CMAKE_ROOT}/Modules/CMakeExportBuildSettings.cmake)
|
|
SET(RPLY_BUILD_SETTINGS_FILE ${rply_BINARY_DIR}/RPLYBuildSettings.cmake)
|
|
SET(RPLY_EXPORT_BUILD_SETTINGS_FILE
|
|
${CMAKE_INSTALL_PREFIX}/share/rply/cmake/RPLYBuildSettings.cmake
|
|
)
|
|
CMAKE_EXPORT_BUILD_SETTINGS(${RPLY_BUILD_SETTINGS_FILE})
|
|
|
|
# Create the VXLConfig.cmake file for the build tree.
|
|
CONFIGURE_FILE(${RPLY_CMAKE_DIR}Modules/RPLYConfig.cmake.in
|
|
${CMAKE_BINARY_DIR}/rplyConfig.cmake @ONLY IMMEDIATE)
|
|
|
|
INSTALL_FILES(/share/rply FILES
|
|
${CMAKE_BINARY_DIR}/rplyConfig.cmake
|
|
# ${RPLY_BINARY_DIR}/RPLYBuildSettings.cmake
|
|
# ${RPLY_BINARY_DIR}/RPLYLibraryDepends.cmake
|
|
# ${RPLY_CMAKE_DIR}/RPLYStandardOptions.cmake
|
|
# ${RPLY_CMAKE_DIR}/UseRPLY.cmake
|
|
)
|