diff options
Diffstat (limited to 'projects.pro')
-rw-r--r-- | projects.pro | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/projects.pro b/projects.pro index 953eae8..a1f2dd1 100644 --- a/projects.pro +++ b/projects.pro @@ -28,6 +28,10 @@ isEmpty(QT_BUILD_PARTS) { #defaults } } +symbian { + QT_BUILD_PARTS = libs tools examples demos +} + #process the projects for(PROJECT, $$list($$lower($$unique(QT_BUILD_PARTS)))) { isEqual(PROJECT, tools) { @@ -49,9 +53,9 @@ for(PROJECT, $$list($$lower($$unique(QT_BUILD_PARTS)))) { } } -confclean.depends += clean +!symbian: confclean.depends += clean confclean.commands = -unix { +unix:!symbian { confclean.commands += (cd config.tests/unix/stl && $(MAKE) distclean); \ (cd config.tests/unix/endian && $(MAKE) distclean); \ (cd config.tests/unix/ipv6 && $(MAKE) distclean); \ @@ -101,6 +105,19 @@ win32 { -$(DEL_FILE) .qmake.cache $$escape_expand(\n\t) \ (cd qmake && $(MAKE) distclean) } +symbian { + confclean.depends += distclean + confclean.commands += \ + (cd src\tools\moc && $(MAKE) distclean) $$escape_expand(\n\t) \ + (cd src\tools\rcc && $(MAKE) distclean) $$escape_expand(\n\t) \ + (cd src\tools\uic && $(MAKE) distclean) $$escape_expand(\n\t) \ + -$(DEL_FILE) src\corelib\global\qconfig.h $$escape_expand(\n\t) \ + -$(DEL_FILE) src\corelib\global\qconfig.cpp $$escape_expand(\n\t) \ + -$(DEL_FILE) mkspecs\qconfig.pri $$escape_expand(\n\t) \ + -$(DEL_FILE) .qmake.cache $$escape_expand(\n\t) \ + (cd qmake && $(MAKE) distclean) + +} QMAKE_EXTRA_TARGETS += confclean qmakeclean.commands += (cd qmake && $(MAKE) clean) QMAKE_EXTRA_TARGETS += qmakeclean |