summaryrefslogtreecommitdiffstats
path: root/examples/widgets/tools/styleplugin/plugin/plugin.pro
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/tools/styleplugin/plugin/plugin.pro')
-rw-r--r--examples/widgets/tools/styleplugin/plugin/plugin.pro12
1 files changed, 11 insertions, 1 deletions
diff --git a/examples/widgets/tools/styleplugin/plugin/plugin.pro b/examples/widgets/tools/styleplugin/plugin/plugin.pro
index 35184fc82a..5ab00016ca 100644
--- a/examples/widgets/tools/styleplugin/plugin/plugin.pro
+++ b/examples/widgets/tools/styleplugin/plugin/plugin.pro
@@ -12,7 +12,17 @@ win32 {
CONFIG(debug, release|debug):DESTDIR = ../debug/styles/
CONFIG(release, release|debug):DESTDIR = ../release/styles/
} else {
- DESTDIR = ../styles/
+ macos {
+ # The non-app-bundle case is not supported with qmake, because
+ # the plugin project cannot know whether the app is built
+ # as a bundle or not.
+ DESTDIR = ../styleplugin.app/Contents/PlugIns/styles/
+ contains(QT_CONFIG, debug) {
+ TARGET = $$join(TARGET,,,_debug)
+ }
+ } else {
+ DESTDIR = ../styles/
+ }
}
EXAMPLE_FILES += simplestyle.json