author | mickeyl <mickeyl> | 2004-12-24 12:58:59 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-12-24 12:58:59 (UTC) |
commit | dc57cb439c6c9256f76f78a487942a4d1b2a2e27 (patch) (side-by-side diff) | |
tree | f2b1dc69283c3de30930a650c87be834e04998c9 /examples/simple | |
parent | 3236db49b0718764bcfe211442354202725a6ff6 (diff) | |
download | opie-dc57cb439c6c9256f76f78a487942a4d1b2a2e27.zip opie-dc57cb439c6c9256f76f78a487942a4d1b2a2e27.tar.gz opie-dc57cb439c6c9256f76f78a487942a4d1b2a2e27.tar.bz2 |
qmake 1.08a has more rigid syntax checking and chokes on our .pro files
-rw-r--r-- | examples/simple/example.pro | 330 |
1 files changed, 329 insertions, 1 deletions
diff --git a/examples/simple/example.pro b/examples/simple/example.pro index 4c41b29..b424674 100644 --- a/examples/simple/example.pro +++ b/examples/simple/example.pro @@ -1,38 +1,366 @@ # '#' introduces a comment #CONFIG says the qmake buildsystem what to use # CONFIG += qt warn_on quick-app # qt = Use qt # warn_on = warnings are on # quick-app = Tell the buildsystem that the apps is quick-launchable # # Note if you do not supply quick-app you need to set # TEMPLATE = app or TEMPLATE = lib depending on if you want to build an executable or lib # and DESTDIR= $(OPIEDIR)/bin or $(OPIEDIR)/lib TARGET = simple # the name of the resulting object HEADERS = simple.h # A list header files SOURCES = simple.cpp # A list of source files INTERFACES = # list of ui files INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += $(OPIEDIR)/include LIBS += -lqpe # libs to link against #Important include the global include.pro just like below -include ( $(OPIEDIR)/include.pro ) +include( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + $(OPIEDIR)/include.pro ) |