summaryrefslogtreecommitdiff
path: root/examples/simple/example.pro
Unidiff
Diffstat (limited to 'examples/simple/example.pro') (more/less context) (ignore whitespace changes)
-rw-r--r--examples/simple/example.pro38
1 files changed, 38 insertions, 0 deletions
diff --git a/examples/simple/example.pro b/examples/simple/example.pro
new file mode 100644
index 0000000..4c41b29
--- a/dev/null
+++ b/examples/simple/example.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 )