author | mickeyl <mickeyl> | 2004-12-24 20:12:34 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-12-24 20:12:34 (UTC) |
commit | 15dc267bf93fd9d32cfa9a4c642d0b89761eda7d (patch) (side-by-side diff) | |
tree | fc4014b9eb59dfddc61e55eadd7391f89fce1def /examples/simple/example.pro | |
parent | c935fd64ef5892d32d3d55780f26643a47452752 (diff) | |
download | opie-15dc267bf93fd9d32cfa9a4c642d0b89761eda7d.zip opie-15dc267bf93fd9d32cfa9a4c642d0b89761eda7d.tar.gz opie-15dc267bf93fd9d32cfa9a4c642d0b89761eda7d.tar.bz2 |
Repair damage done by a broken replace program. Note to self: Never use anything other than sed!
Merry Christmas!
-rw-r--r-- | examples/simple/example.pro | 330 |
1 files changed, 1 insertions, 329 deletions
diff --git a/examples/simple/example.pro b/examples/simple/example.pro index b424674..8f006f6 100644 --- a/examples/simple/example.pro +++ b/examples/simple/example.pro @@ -1,366 +1,38 @@ # '#' 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 ) |