diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-12-01 17:33:40 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-12-01 17:33:40 +0100 |
commit | 75c4d97b90e39f2bda6e682def0fdda044cbcf6f (patch) | |
tree | e19850b37ab44bb930888f477c43201576c87e8a /CMakeLists.txt | |
parent | f56eff04ef4d23b62a6e095eca5d4b9f2b52e023 (diff) | |
download | MultiMC-75c4d97b90e39f2bda6e682def0fdda044cbcf6f.tar MultiMC-75c4d97b90e39f2bda6e682def0fdda044cbcf6f.tar.gz MultiMC-75c4d97b90e39f2bda6e682def0fdda044cbcf6f.tar.lz MultiMC-75c4d97b90e39f2bda6e682def0fdda044cbcf6f.tar.xz MultiMC-75c4d97b90e39f2bda6e682def0fdda044cbcf6f.zip |
Exclude more debug libs (on OSX), debug builds include debug libs.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0986b900..1f0519ab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -508,6 +508,23 @@ ENDIF() #### Dist package logic #### +if (CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo") +# Image formats +INSTALL( + DIRECTORY "${QT_PLUGINS_DIR}/imageformats" + DESTINATION ${PLUGIN_DEST_DIR} + COMPONENT Runtime + REGEX "tga|svg|tiff|mng" EXCLUDE +) + +# Platform plugins +INSTALL( + DIRECTORY "${QT_PLUGINS_DIR}/platforms" + DESTINATION ${PLUGIN_DEST_DIR} + COMPONENT Runtime + REGEX "minimal|linuxfb|offscreen" EXCLUDE +) +else() # Image formats INSTALL( DIRECTORY "${QT_PLUGINS_DIR}/imageformats" @@ -515,6 +532,7 @@ INSTALL( COMPONENT Runtime REGEX "tga|svg|tiff|mng" EXCLUDE REGEX "d\\." EXCLUDE + REGEX "_debug\\." EXCLUDE ) # Platform plugins @@ -524,7 +542,9 @@ INSTALL( COMPONENT Runtime REGEX "minimal|linuxfb|offscreen" EXCLUDE REGEX "d\\." EXCLUDE + REGEX "_debug\\." EXCLUDE ) +endif() # qtconf INSTALL( @@ -540,7 +560,7 @@ INSTALL( FILE(GLOB_RECURSE QTPLUGINS \"\${CMAKE_INSTALL_PREFIX}/${PLUGIN_DEST_DIR}/*${CMAKE_SHARED_LIBRARY_SUFFIX}\") function(gp_resolved_file_type_override resolved_file type_var) if(resolved_file MATCHES \"^/usr/lib/libQt\") - message(\"resolving \${resolved_file} as system\") + message(\"resolving \${resolved_file} as other\") set(\${type_var} other PARENT_SCOPE) endif() endfunction() |