author | zecke <zecke> | 2004-11-15 15:11:51 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-11-15 15:11:51 (UTC) |
commit | 3b935c93d5576e6590ed89c75066983124e2c628 (patch) (unidiff) | |
tree | b3592abd50a89e4abf50e7529c8bc0a81787acdb | |
parent | 74febba2749d3a8eefc13c1f46a0f7f5fc095d5a (diff) | |
download | opie-3b935c93d5576e6590ed89c75066983124e2c628.zip opie-3b935c93d5576e6590ed89c75066983124e2c628.tar.gz opie-3b935c93d5576e6590ed89c75066983124e2c628.tar.bz2 |
Define QUICKAPP_NAME on quicklaunchanble applications. This way .pro and
the mainwindow are always in sync with each other
-rw-r--r-- | include.pro | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include.pro b/include.pro index 0dc941b..ffdba16 100644 --- a/include.pro +++ b/include.pro | |||
@@ -9,6 +9,8 @@ contains( CONFIG, quick-app-lib ) { | |||
9 | CONFIG += plugin # "plugin" will be removed automatically later if not MacOSX ! (eilers) | 9 | CONFIG += plugin # "plugin" will be removed automatically later if not MacOSX ! (eilers) |
10 | DESTDIR = $(OPIEDIR)/plugins/application | 10 | DESTDIR = $(OPIEDIR)/plugins/application |
11 | DEFINES += OPIE_APP_INTERFACE | 11 | DEFINES += OPIE_APP_INTERFACE |
12 | DEFINES += QUICKAPP_NAME="\"$${TARGET}\"" | ||
13 | |||
12 | !contains( TARGET, launcher ) { | 14 | !contains( TARGET, launcher ) { |
13 | message( Linking $$TARGET to quicklauncher ) | 15 | message( Linking $$TARGET to quicklauncher ) |
14 | system( rm -f $$(OPIEDIR)/bin/$$TARGET ) | 16 | system( rm -f $$(OPIEDIR)/bin/$$TARGET ) |
@@ -20,6 +22,7 @@ contains ( CONFIG, quick-app-bin ) { | |||
20 | TEMPLATE = app | 22 | TEMPLATE = app |
21 | DESTDIR = $(OPIEDIR)/bin | 23 | DESTDIR = $(OPIEDIR)/bin |
22 | DEFINES -= OPIE_APP_INTERFACE | 24 | DEFINES -= OPIE_APP_INTERFACE |
25 | DEFINES += QUICKAPP_NAME="\"$${TARGET}\"" | ||
23 | message( Touching plugins/application/lib$${TARGET}.so.0 ) | 26 | message( Touching plugins/application/lib$${TARGET}.so.0 ) |
24 | system( touch $$(OPIEDIR)/plugins/application/lib$${TARGET}.so.0 ) | 27 | system( touch $$(OPIEDIR)/plugins/application/lib$${TARGET}.so.0 ) |
25 | } | 28 | } |