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