author | zecke <zecke> | 2005-04-24 18:31:07 (UTC) |
---|---|---|
committer | zecke <zecke> | 2005-04-24 18:31:07 (UTC) |
commit | b04cf97b3ca0e3dcedac52254a8d9c4ae3894464 (patch) (unidiff) | |
tree | d960391a5c803acbc52381ab5534abddfac7e9d7 /examples/simple | |
parent | 2654d303f9ee732ef938ab1a54f314b2e6605579 (diff) | |
download | opie-b04cf97b3ca0e3dcedac52254a8d9c4ae3894464.zip opie-b04cf97b3ca0e3dcedac52254a8d9c4ae3894464.tar.gz opie-b04cf97b3ca0e3dcedac52254a8d9c4ae3894464.tar.bz2 |
Link fixes:
OApplicationFactory uses odebug since some time
(dunno if I introduced it) link to opiecore to fix
building
-rw-r--r-- | examples/simple/simple.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/simple/simple.pro b/examples/simple/simple.pro index 8f006f6..40b0aaf 100644 --- a/examples/simple/simple.pro +++ b/examples/simple/simple.pro | |||
@@ -1,38 +1,38 @@ | |||
1 | # '#' introduces a comment | 1 | # '#' introduces a comment |
2 | #CONFIG says the qmake buildsystem what to use | 2 | #CONFIG says the qmake buildsystem what to use |
3 | # | 3 | # |
4 | CONFIG += qt warn_on quick-app | 4 | CONFIG += qt warn_on quick-app |
5 | # qt = Use qt | 5 | # qt = Use qt |
6 | # warn_on = warnings are on | 6 | # warn_on = warnings are on |
7 | # quick-app = Tell the buildsystem that the apps is quick-launchable | 7 | # quick-app = Tell the buildsystem that the apps is quick-launchable |
8 | # | 8 | # |
9 | 9 | ||
10 | # Note if you do not supply quick-app you need to set | 10 | # Note if you do not supply quick-app you need to set |
11 | # TEMPLATE = app or TEMPLATE = lib depending on if you want to build an executable or lib | 11 | # TEMPLATE = app or TEMPLATE = lib depending on if you want to build an executable or lib |
12 | # and DESTDIR= $(OPIEDIR)/bin or $(OPIEDIR)/lib | 12 | # and DESTDIR= $(OPIEDIR)/bin or $(OPIEDIR)/lib |
13 | 13 | ||
14 | TARGET = simple | 14 | TARGET = simple |
15 | # the name of the resulting object | 15 | # the name of the resulting object |
16 | 16 | ||
17 | HEADERS = simple.h | 17 | HEADERS = simple.h |
18 | # A list header files | 18 | # A list header files |
19 | 19 | ||
20 | 20 | ||
21 | SOURCES = simple.cpp | 21 | SOURCES = simple.cpp |
22 | # A list of source files | 22 | # A list of source files |
23 | 23 | ||
24 | INTERFACES = | 24 | INTERFACES = |
25 | # list of ui files | 25 | # list of ui files |
26 | 26 | ||
27 | INCLUDEPATH += $(OPIEDIR)/include | 27 | INCLUDEPATH += $(OPIEDIR)/include |
28 | DEPENDPATH += $(OPIEDIR)/include | 28 | DEPENDPATH += $(OPIEDIR)/include |
29 | 29 | ||
30 | 30 | ||
31 | 31 | ||
32 | LIBS += -lqpe | 32 | LIBS += -lqpe -lopiecore2 |
33 | # libs to link against | 33 | # libs to link against |
34 | 34 | ||
35 | #Important include the global include.pro just like below | 35 | #Important include the global include.pro just like below |
36 | 36 | ||
37 | 37 | ||
38 | include( $(OPIEDIR)/include.pro ) | 38 | include( $(OPIEDIR)/include.pro ) |