implemented screen inhibit.
[simple-xmbc-rem] / src / simplexbmcremote.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 CONFIG += mobility
23 MOBILITY += systeminfo
24
25 symbian:TARGET.UID3 = 0xED8FBFF1
26
27 # If your application uses the Qt Mobility libraries, uncomment
28 # the following lines and add the respective components to the 
29 # MOBILITY variable. 
30 # CONFIG += mobility
31 # MOBILITY +=
32
33 TARGET = simplexbmcremote
34
35 SOURCES += main.cpp mainwindow.cpp \
36     setupdialog.cpp \
37     xbmc.cpp \
38     genericnotify.cpp
39 HEADERS += mainwindow.h \
40     setupdialog.h \
41     constants.h \
42     xbmc.h \
43     genericnotify.h
44 FORMS += mainwindow.ui \
45     setupdialog.ui
46
47 # Please do not modify the following two lines. Required for deployment.
48 include(deployment.pri)
49 qtcAddDeployment()
50
51 RESOURCES += \
52     simplexbmcremote.qrc