summaryrefslogtreecommitdiff
path: root/examples/simple/simple.pro
blob: 8f006f6b9c871e79bda4faeccc31990f0ff025a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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 )