57700d2153f4c7db0c549aa6e00e9aebf972254e
[pierogi] / pierogi.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 symbian:TARGET.UID3 = 0xE0C0A793
8
9 # Smart Installer package's UID
10 # This UID is from the protected range 
11 # and therefore the package will fail to install if self-signed
12 # By default qmake uses the unprotected range value if unprotected UID is defined for the application
13 # and 0x2002CCCF value if protected UID is given to the application
14 #symbian:DEPLOYMENT.installer_header = 0x2002CCCF
15
16 # Allow network access on Symbian
17 symbian:TARGET.CAPABILITY += NetworkServices
18
19 # If your application uses the Qt Mobility libraries, uncomment
20 # the following lines and add the respective components to the 
21 # MOBILITY variable. 
22 # CONFIG += mobility
23 # MOBILITY +=
24
25 SOURCES += main.cpp mainwindow.cpp \
26     pirdevice.cpp \
27     selectionwindow.cpp \
28     necprotocol.cpp \
29     rc5protocol.cpp \
30     pirmakenames.cpp \
31     pirdocumentationform.cpp \
32     piraboutform.cpp \
33     pirexception.cpp \
34     pirkeysetwidgetitem.cpp \
35     pirprotocol.cpp \
36     keysets/apple.cpp \
37     keysets/ei.cpp \
38     keysets/goldstar.cpp \
39     keysets/hauppauge.cpp \
40     keysets/lg.cpp \
41     keysets/nokia.cpp \
42     keysets/panasonic.cpp \
43     keysets/samsung.cpp \
44     keysets/sanyo.cpp \
45     keysets/sharp.cpp \
46     keysets/sony.cpp \
47     keysets/toshiba.cpp \
48     keysets/zenith.cpp \
49     pirkeysetmetadata.cpp \
50     pirkeysetmanager.cpp
51 HEADERS += mainwindow.h \
52     pirdevice.h \
53     pirkeynames.h \
54     selectionwindow.h \
55     necprotocol.h \
56     rc5protocol.h \
57     pirmakenames.h \
58     pirdocumentationform.h \
59     piraboutform.h \
60     pirexception.h \
61     pirkeysetwidgetitem.h \
62     pirprotocol.h \
63     keysets/apple.h \
64     keysets/ei.h \
65     keysets/goldstar.h \
66     keysets/hauppauge.h \
67     keysets/lg.h \
68     keysets/nokia.h \
69     keysets/panasonic.h \
70     keysets/samsung.h \
71     keysets/sanyo.h \
72     keysets/sharp.h \
73     keysets/sony.h \
74     keysets/toshiba.h \
75     keysets/zenith.h \
76     pirkeysetmetadata.h \
77     pirkeysetmanager.h
78 FORMS += mainwindow.ui \
79     pirdocumentationform.ui \
80     piraboutform.ui
81
82 # Please do not modify the following two lines. Required for deployment.
83 include(deployment.pri)
84 qtcAddDeployment()
85
86 OTHER_FILES += \
87     qtc_packaging/debian_fremantle/rules \
88     qtc_packaging/debian_fremantle/README \
89     qtc_packaging/debian_fremantle/copyright \
90     qtc_packaging/debian_fremantle/control \
91     qtc_packaging/debian_fremantle/compat \
92     qtc_packaging/debian_fremantle/changelog \
93     icons/black/sound_high_icon&48.png \
94     icons/arrow_bottom_icon&48.png \
95     icons/arrow_left_icon&48.png \
96     icons/arrow_right_icon&48.png \
97     icons/arrow_top_icon&48.png \
98     icons/blue_square.png \
99     icons/br_up_icon&48.png \
100     icons/clock_icon&48.png \
101     icons/dash.png \
102     icons/eject_icon&48.png \
103     icons/fastforward_next_icon&48.png \
104     icons/green_square.png \
105     icons/on-off_icon&48.png \
106     icons/PierogiIcon.png \
107     icons/playback_ff_icon&48.png \
108     icons/playback_next_icon&48.png \
109     icons/playback_pause_icon&48.png \
110     icons/playback_play_icon&48.png \
111     icons/playback_prev_icon&48.png \
112     icons/playback_rew_icon&48.png \
113     icons/playback_stop_icon&48.png \
114     icons/red_record_icon.png \
115     icons/red_square.png \
116     icons/redo_icon&48.png \
117     icons/rewind_previous_icon&48.png \
118     icons/sound_high_icon&48.png \
119     icons/sound_low_icon&48.png \
120     icons/sound_mute_icon&48.png \
121     icons/undo_icon&48.png \
122     icons/yellow_square.png \
123     doc/about.html \
124     doc/documentation.html
125
126 RESOURCES += \
127     PierogiResources.qrc
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164