diff options
author | Petr Mrázek <peterix@gmail.com> | 2017-05-06 11:58:57 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2017-05-06 11:58:57 +0200 |
commit | 349381cb2b930263dda875945b912b74656fd847 (patch) | |
tree | 1d8dba5d42d1a508335bafd2d262c38fe438f6c1 /application | |
parent | 4183cc203fa090d9a11429938d61cc1418a9433b (diff) | |
download | MultiMC-349381cb2b930263dda875945b912b74656fd847.tar MultiMC-349381cb2b930263dda875945b912b74656fd847.tar.gz MultiMC-349381cb2b930263dda875945b912b74656fd847.tar.lz MultiMC-349381cb2b930263dda875945b912b74656fd847.tar.xz MultiMC-349381cb2b930263dda875945b912b74656fd847.zip |
NOISSUE remove debug symbols of Qt plugins from macOS bundle
Diffstat (limited to 'application')
-rw-r--r-- | application/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/application/CMakeLists.txt b/application/CMakeLists.txt index 1d2880d6..1ce9e6cd 100644 --- a/application/CMakeLists.txt +++ b/application/CMakeLists.txt @@ -472,6 +472,7 @@ else() REGEX "tga|tiff|mng" EXCLUDE REGEX "d\\." EXCLUDE REGEX "_debug\\." EXCLUDE + REGEX "\\.dSYM" EXCLUDE ) # Icon engines install( @@ -481,6 +482,7 @@ else() REGEX "fontawesome" EXCLUDE REGEX "d\\." EXCLUDE REGEX "_debug\\." EXCLUDE + REGEX "\\.dSYM" EXCLUDE ) # Platform plugins install( @@ -490,6 +492,7 @@ else() REGEX "minimal|linuxfb|offscreen" EXCLUDE REGEX "d\\." EXCLUDE REGEX "_debug\\." EXCLUDE + REGEX "\\.dSYM" EXCLUDE ) endif() configure_file( |