diff options
author | Niels Ole Salscheider <niels_ole@salscheider-online.de> | 2015-12-21 15:02:11 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-12-21 15:23:48 (GMT) |
commit | 7656662148782b7751c62efd256e644c7295c883 (patch) | |
tree | 3b68d118027732e9852208e6a21f2481b877c7a0 /Source/QtDialog | |
parent | ba88bfcf212bc8e93eb065e6d4bafbbf34394e68 (diff) | |
download | CMake-7656662148782b7751c62efd256e644c7295c883.zip CMake-7656662148782b7751c62efd256e644c7295c883.tar.gz CMake-7656662148782b7751c62efd256e644c7295c883.tar.bz2 |
QtDialog: Add option to control XDG file install destination
Create a `CMAKE_XDGDATA_DIR` option and add a corresponding flag to the
`bootstrap` script. This is needed for multiarch layouts where the
prefix is `/usr/${host}` but where architecture-independent files (like
the XDG-specific ones) are installed to `/usr/share`.
Diffstat (limited to 'Source/QtDialog')
-rw-r--r-- | Source/QtDialog/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/QtDialog/CMakeLists.txt b/Source/QtDialog/CMakeLists.txt index 9161ad3..f17de5d 100644 --- a/Source/QtDialog/CMakeLists.txt +++ b/Source/QtDialog/CMakeLists.txt @@ -193,7 +193,7 @@ if(UNIX AND NOT APPLE) foreach (size IN ITEMS 32 128) install( FILES "${CMAKE_CURRENT_SOURCE_DIR}/CMakeSetup${size}.png" - DESTINATION "share/icons/hicolor/${size}x${size}/apps" + DESTINATION "${CMAKE_XDGDATA_DIR}/icons/hicolor/${size}x${size}/apps" ${COMPONENT} RENAME "CMakeSetup.png") endforeach () @@ -201,10 +201,10 @@ if(UNIX AND NOT APPLE) # install a desktop file so CMake appears in the application start menu # with an icon install(FILES CMake.desktop - DESTINATION share/applications + DESTINATION "${CMAKE_XDGDATA_DIR}/applications" ${COMPONENT}) install(FILES cmakecache.xml - DESTINATION share/mime/packages + DESTINATION "${CMAKE_XDGDATA_DIR}/mime/packages" ${COMPONENT}) endif() |