added notification via libnotify and QMaemo5InformationBox.
[simple-xmbc-rem] / src / xbmcnetmoviesremote.pro
1 # Add files and directories to ship with the application 
2 # by adapting the examples below.
3 # file1.source = myfile
4 # dir1.source = mydir
5 DEPLOYMENTFOLDERS = # file1 dir1
6
7 # Avoid auto screen rotation
8 #DEFINES += ORIENTATIONLOCK
9
10 maemo5 {
11     message(Compiling for Maemo)
12     QT += maemo5
13     DEFINES += Q_WS_MAEMO_5
14 } else {
15     CONFIG += link_pkgconfig
16     PKGCONFIG += gtk+-2.0 libnotify
17 }
18
19 # Needs to be defined for Symbian
20 DEFINES += NETWORKACCESS
21 QT += network
22
23 symbian:TARGET.UID3 = 0xED8FBFF1
24
25 # If your application uses the Qt Mobility libraries, uncomment
26 # the following lines and add the respective components to the 
27 # MOBILITY variable. 
28 # CONFIG += mobility
29 # MOBILITY +=
30
31 TARGET = xbmcnetmoviesremote
32
33 SOURCES += main.cpp mainwindow.cpp \
34     setupdialog.cpp \
35     xbmc.cpp \
36     genericnotify.cpp
37 HEADERS += mainwindow.h \
38     setupdialog.h \
39     constants.h \
40     xbmc.h \
41     genericnotify.h
42 FORMS += mainwindow.ui \
43     setupdialog.ui
44
45 # Please do not modify the following two lines. Required for deployment.
46 include(deployment.pri)
47 qtcAddDeployment()