Shlibs
[ameter] / ameter.pro
1 symbian:TARGET.UID3 = 0xE7516F88
2
3 # Allow network access on Symbian
4 symbian:TARGET.CAPABILITY += NetworkServices
5
6 # If your application uses the Qt Mobility libraries, uncomment
7 # the following lines and add the respective components to the 
8 # MOBILITY variable. 
9 CONFIG += mobility
10 MOBILITY += sensors
11
12 SOURCES += main.cpp \
13     mainwindow.cpp \
14     ameterwidget.cpp \
15     asettings.cpp \
16     about.cpp
17
18 HEADERS += mainwindow.h \
19     ameterwidget.h \
20     asettings.h \
21     about.h
22
23 FORMS +=
24
25 unix {
26     isEmpty(PREFIX) {
27         PREFIX = /usr
28     }
29     INSTALLS += target desktop icon64
30
31     target.path = $$PREFIX/bin
32
33     desktop.path = $$PREFIX/share/applications/hildon
34     desktop.files += ameter.desktop
35
36     icon64.path = $$PREFIX/share/icons/hicolor/64x64/apps
37     icon64.files = ameter.png
38 }
39