diff options
author | Espen Riskedal <espenr@trolltech.com> | 2009-08-21 15:38:33 (GMT) |
---|---|---|
committer | Espen Riskedal <espenr@trolltech.com> | 2009-08-21 16:00:34 (GMT) |
commit | bb594fc6897566cd2b636bb86c4c2da7faef7271 (patch) | |
tree | 4520f63e4153d615cc55e26daf7b2f8151d351dc /examples/draganddrop | |
parent | 628e2c59dcb7c036bd7b40ff0a2fda0d89aa7155 (diff) | |
download | Qt-bb594fc6897566cd2b636bb86c4c2da7faef7271.zip Qt-bb594fc6897566cd2b636bb86c4c2da7faef7271.tar.gz Qt-bb594fc6897566cd2b636bb86c4c2da7faef7271.tar.bz2 |
renamed examplebase.pri to symbianpkgrules.pri
examplesbase.pri sounded to generic and it was not obvious that this
was only for Symbian. Also merged the different symbian rules if they
were spread around in the .pro file.
Reviewed-by: Aleksandar Sasha Babic
Diffstat (limited to 'examples/draganddrop')
5 files changed, 16 insertions, 11 deletions
diff --git a/examples/draganddrop/draggableicons/draggableicons.pro b/examples/draganddrop/draggableicons/draggableicons.pro index 6d53baa..f177bd6 100644 --- a/examples/draganddrop/draggableicons/draggableicons.pro +++ b/examples/draganddrop/draggableicons/draggableicons.pro @@ -9,6 +9,7 @@ sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro images sources.path = $$[QT_INSTALL_EXAMPLES]/draganddrop/draggableicons INSTALLS += target sources -include($$QT_SOURCE_TREE/examples/examplebase.pri) - -symbian:TARGET.UID3 = 0xA000C615
\ No newline at end of file +symbian { + include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) + TARGET.UID3 = 0xA000C615 +} diff --git a/examples/draganddrop/draggabletext/draggabletext.pro b/examples/draganddrop/draggabletext/draggabletext.pro index 15d909d..19fee2d 100644 --- a/examples/draganddrop/draggabletext/draggabletext.pro +++ b/examples/draganddrop/draggabletext/draggabletext.pro @@ -11,6 +11,7 @@ sources.files = $$SOURCES $$HEADERS $$RESOURCES *.txt *.pro sources.path = $$[QT_INSTALL_EXAMPLES]/draganddrop/draggabletext INSTALLS += target sources -include($$QT_SOURCE_TREE/examples/examplebase.pri) - -symbian:TARGET.UID3 = 0xA000CF64
\ No newline at end of file +symbian { + include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) + TARGET.UID3 = 0xA000CF64 +} diff --git a/examples/draganddrop/dropsite/dropsite.pro b/examples/draganddrop/dropsite/dropsite.pro index a42f717..5f81b09 100644 --- a/examples/draganddrop/dropsite/dropsite.pro +++ b/examples/draganddrop/dropsite/dropsite.pro @@ -10,4 +10,4 @@ sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro images sources.path = $$[QT_INSTALL_EXAMPLES]/draganddrop/dropsite INSTALLS += target sources -include($$QT_SOURCE_TREE/examples/examplebase.pri) +symbian: include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) diff --git a/examples/draganddrop/fridgemagnets/fridgemagnets.pro b/examples/draganddrop/fridgemagnets/fridgemagnets.pro index b452746..b8388cf 100644 --- a/examples/draganddrop/fridgemagnets/fridgemagnets.pro +++ b/examples/draganddrop/fridgemagnets/fridgemagnets.pro @@ -10,6 +10,10 @@ target.path = $$[QT_INSTALL_EXAMPLES]/draganddrop/fridgemagnets sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro *.txt sources.path = $$[QT_INSTALL_EXAMPLES]/draganddrop/fridgemagnets INSTALLS += target sources -TARGET.UID3 = 0xA000C610 -include($$QT_SOURCE_TREE/examples/examplebase.pri) +symbian { + include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) + TARGET.UID3 = 0xA000C610 +} + + diff --git a/examples/draganddrop/puzzle/puzzle.pro b/examples/draganddrop/puzzle/puzzle.pro index ecaf706..20080e9 100644 --- a/examples/draganddrop/puzzle/puzzle.pro +++ b/examples/draganddrop/puzzle/puzzle.pro @@ -13,9 +13,8 @@ sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro *.jpg sources.path = $$[QT_INSTALL_EXAMPLES]/draganddrop/puzzle INSTALLS += target sources -include($$QT_SOURCE_TREE/examples/examplebase.pri) - symbian:{ + include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) addFile.sources = example.jpg addFile.path = . DEPLOYMENT += addFile |