summaryrefslogtreecommitdiff
path: root/examples/simple/simple.pro
authormickeyl <mickeyl>2005-01-29 14:57:47 (UTC)
committer mickeyl <mickeyl>2005-01-29 14:57:47 (UTC)
commit24cdbd7419267a124a6a0991819ba6a2c4d211a5 (patch) (unidiff)
tree5eac29d7603455ecb733674c96f231e4241c7be0 /examples/simple/simple.pro
parentc967c1b8ad8135d9a56e936a43469cc0faea7888 (diff)
downloadopie-24cdbd7419267a124a6a0991819ba6a2c4d211a5.zip
opie-24cdbd7419267a124a6a0991819ba6a2c4d211a5.tar.gz
opie-24cdbd7419267a124a6a0991819ba6a2c4d211a5.tar.bz2
use proper names for .pro files
please remember to name the .pro file exactly like the name of the directory
Diffstat (limited to 'examples/simple/simple.pro') (more/less context) (show whitespace changes)
-rw-r--r--examples/simple/simple.pro38
1 files changed, 38 insertions, 0 deletions
diff --git a/examples/simple/simple.pro b/examples/simple/simple.pro
new file mode 100644
index 0000000..8f006f6
--- a/dev/null
+++ b/examples/simple/simple.pro
@@ -0,0 +1,38 @@
1# '#' introduces a comment
2#CONFIG says the qmake buildsystem what to use
3#
4CONFIG += qt warn_on quick-app
5# qt = Use qt
6# warn_on = warnings are on
7# quick-app = Tell the buildsystem that the apps is quick-launchable
8#
9
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
12# and DESTDIR= $(OPIEDIR)/bin or $(OPIEDIR)/lib
13
14TARGET = simple
15# the name of the resulting object
16
17HEADERS = simple.h
18# A list header files
19
20
21SOURCES = simple.cpp
22# A list of source files
23
24INTERFACES =
25# list of ui files
26
27INCLUDEPATH += $(OPIEDIR)/include
28DEPENDPATH += $(OPIEDIR)/include
29
30
31
32LIBS += -lqpe
33# libs to link against
34
35#Important include the global include.pro just like below
36
37
38include( $(OPIEDIR)/include.pro )