89 files changed, 1247 insertions, 1200 deletions
@@ -1,295 +1,295 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | # | 2 | # |
3 | # Configures to build the Qtopia Environment | 3 | # Configures to build the Qtopia Environment |
4 | # | 4 | # |
5 | # Copyright 1999-2000 Trolltech AS. All rights reserved. | 5 | # Copyright 1999-2000 Trolltech AS. All rights reserved. |
6 | # | 6 | # |
7 | 7 | ||
8 | PLATFORM=generic | 8 | PLATFORM=generic |
9 | SHARING=shared | 9 | SHARING=shared |
10 | DEBUG= | 10 | DEBUG= |
11 | QCONFIGARG= | 11 | QCONFIGARG= |
12 | 12 | ||
13 | touch .test.qpe. | 13 | touch .test.qpe. |
14 | if [ '!' -f ${OPIEDIR}/.test.qpe. ]; | 14 | if [ '!' -f ${OPIEDIR}/.test.qpe. ]; |
15 | then | 15 | then |
16 | rm .test.qpe. | 16 | rm .test.qpe. |
17 | echo | 17 | echo |
18 | echo | 18 | echo |
19 | echo ' The environment variable $OPIEDIR is not set correctly. It is currently' | 19 | echo ' The environment variable $OPIEDIR is not set correctly. It is currently' |
20 | echo ' set to "'$OPIEDIR'", but it should be set to this directory,' | 20 | echo ' set to "'$OPIEDIR'", but it should be set to this directory,' |
21 | echo ' which is "'`pwd`'".' | 21 | echo ' which is "'`pwd`'".' |
22 | echo | 22 | echo |
23 | echo ' Please read the INSTALL file for instructions on how to set $OPIEDIR' | 23 | echo ' Please read the INSTALL file for instructions on how to set $OPIEDIR' |
24 | echo ' correctly. If you have set $OPIEDIR in your .profile or .login, you ' | 24 | echo ' correctly. If you have set $OPIEDIR in your .profile or .login, you ' |
25 | echo ' will need to log out and log in again to make the setting effective.' | 25 | echo ' will need to log out and log in again to make the setting effective.' |
26 | echo | 26 | echo |
27 | echo | 27 | echo |
28 | exit 1 | 28 | exit 1 |
29 | fi | 29 | fi |
30 | rm .test.qpe. | 30 | rm .test.qpe. |
31 | 31 | ||
32 | if [ '!' -f $TMAKEPATH/tmake.conf ] | 32 | if [ '!' -f $TMAKEPATH/tmake.conf ] |
33 | then | 33 | then |
34 | # You have tmake. We'll regenerate the file for you... | 34 | # You have tmake. We'll regenerate the file for you... |
35 | echo ' The environment variable $TMAKEPATH is not set correclty. ' | 35 | echo ' The environment variable $TMAKEPATH is not set correclty. ' |
36 | echo ' It should be set to the tmake path' | 36 | echo ' It should be set to the tmake path' |
37 | echo | 37 | echo |
38 | echo ' Please read the INSTALL file for instructions on how to set $TMAKEPATH' | 38 | echo ' Please read the INSTALL file for instructions on how to set $TMAKEPATH' |
39 | echo ' to the environment variable correctly.' | 39 | echo ' to the environment variable correctly.' |
40 | exit 1 | 40 | exit 1 |
41 | fi | 41 | fi |
42 | 42 | ||
43 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\.[0-9]*\.[0-9]*.*".*/\1/p' <library/version.h) | 43 | VERSION_MAJ=$(sed -n -e 's/.*QPE_VERSION "\([0-9]*\)\.[0-9]*\.[0-9]*.*".*/\1/p' <library/version.h) |
44 | VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION "[0-9]*\.\([0-9]\)\.[0-9]*.*".*/\1/p' <library/version.h) | 44 | VERSION_MIN=$(sed -n -e 's/.*QPE_VERSION "[0-9]*\.\([0-9]\)\.[0-9]*.*".*/\1/p' <library/version.h) |
45 | VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION "[0-9]*\.[0-9]*\.\([0-9]*\).*".*/\1/p' <library/version.h) | 45 | VERSION_PAT=$(sed -n -e 's/.*QPE_VERSION "[0-9]*\.[0-9]*\.\([0-9]*\).*".*/\1/p' <library/version.h) |
46 | 46 | ||
47 | TOMAKE= | 47 | TOMAKE= |
48 | 48 | ||
49 | if grep -q 'VERSION_STR.*"3' $QTDIR/include/qglobal.h | 49 | if grep -q 'VERSION_STR.*"3' $QTDIR/include/qglobal.h |
50 | then | 50 | then |
51 | QT3=yes | 51 | QT3=yes |
52 | else | 52 | else |
53 | QT3=no | 53 | QT3=no |
54 | fi | 54 | fi |
55 | 55 | ||
56 | # Parse the arguments, setting things to "yes" or "no". | 56 | # Parse the arguments, setting things to "yes" or "no". |
57 | 57 | ||
58 | while [ -n "$1" ]; do | 58 | while [ -n "$1" ]; do |
59 | case $1 in | 59 | case $1 in |
60 | -platform|-xplatform) # No difference since we don't need to build moc, etc. | 60 | -platform|-xplatform) # No difference since we don't need to build moc, etc. |
61 | shift; PLATFORM=$1 | 61 | shift; PLATFORM=$1 |
62 | ;; | 62 | ;; |
63 | -release) | 63 | -release) |
64 | DEBUG= | 64 | DEBUG= |
65 | ;; | 65 | ;; |
66 | -debug) | 66 | -debug) |
67 | DEBUG=-debug | 67 | DEBUG=-debug |
68 | ;; | 68 | ;; |
69 | -shared) | 69 | -shared) |
70 | SHARING=shared | 70 | SHARING=shared |
71 | ;; | 71 | ;; |
72 | -static) | 72 | -static) |
73 | SHARING=static | 73 | SHARING=static |
74 | ;; | 74 | ;; |
75 | -qconfig) | 75 | -qconfig) |
76 | # optional way to specify the qconfig-qpe.h is to pass -qconfig qpe | 76 | # optional way to specify the qconfig-qpe.h is to pass -qconfig qpe |
77 | shift; QCONFIGARG=DEFINES+=QCONFIG='\"'$1'\"' # Don't quote me on that. | 77 | shift; QCONFIGARG=DEFINES+=QCONFIG='\"'$1'\"' # Don't quote me on that. |
78 | ;; | 78 | ;; |
79 | -make) | 79 | -make) |
80 | shift; TOMAKE="$TOMAKE $1" | 80 | shift; TOMAKE="$TOMAKE $1" |
81 | ;; | 81 | ;; |
82 | -qt3) | 82 | -qt3) |
83 | QT3=yes | 83 | QT3=yes |
84 | ;; | 84 | ;; |
85 | *) | 85 | *) |
86 | HELP=yes;; | 86 | HELP=yes;; |
87 | esac | 87 | esac |
88 | shift | 88 | shift |
89 | done | 89 | done |
90 | 90 | ||
91 | TARGET=configs/$PLATFORM-$SHARING$DEBUG | 91 | TARGET=configs/$PLATFORM-$SHARING$DEBUG |
92 | 92 | ||
93 | if [ '!' -f $TARGET ] | 93 | if [ '!' -f $TARGET ] |
94 | then | 94 | then |
95 | if [ -f configs/linux-$PLATFORM-g++-$SHARING$DEBUG ] | 95 | if [ -f configs/linux-$PLATFORM-g++-$SHARING$DEBUG ] |
96 | then | 96 | then |
97 | TARGET=configs/linux-$PLATFORM-g++-$SHARING$DEBUG | 97 | TARGET=configs/linux-$PLATFORM-g++-$SHARING$DEBUG |
98 | PLATFORM=linux-$PLATFORM-g++ | ||
98 | else | 99 | else |
99 | echo | 100 | echo |
100 | echo ' The specified platform/compiler not supported: ' $TARGET | 101 | echo ' The specified platform/compiler not supported: ' $TARGET |
101 | echo | 102 | echo |
102 | exit 2 | 103 | exit 2 |
103 | fi | 104 | fi |
104 | fi | 105 | fi |
105 | 106 | ||
106 | # Next, emit a usage message if something failed. | 107 | # Next, emit a usage message if something failed. |
107 | 108 | ||
108 | if [ "$HELP" = "yes" ]; then | 109 | if [ "$HELP" = "yes" ]; then |
109 | cat <<EOF | 110 | cat <<EOF |
110 | Usage: $0 [-debug] [-release] [-shared] [-static] [-qt3] [-platform ...] | 111 | Usage: $0 [-debug] [-release] [-shared] [-static] [-qt3] [-platform ...] |
111 | 112 | ||
112 | The defaults (*) are usually acceptable. Here is a short explanation of | 113 | The defaults (*) are usually acceptable. Here is a short explanation of |
113 | each option: | 114 | each option: |
114 | 115 | ||
115 | * -release ........... Compile and link Qt with debugging turned off. | 116 | * -release ........... Compile and link Qt with debugging turned off. |
116 | -debug ............. Compile and link Qt with debugging turned on. | 117 | -debug ............. Compile and link Qt with debugging turned on. |
117 | 118 | ||
118 | * -shared ............ Create and use a shared Qt library (libqt.so) | 119 | * -shared ............ Create and use a shared Qt library (libqt.so) |
119 | -static ............ Create and use a static Qt library (libqt.a) | 120 | -static ............ Create and use a static Qt library (libqt.a) |
120 | 121 | ||
121 | -qt3 ............... Configure for use with Qt 3.x | 122 | -qt3 ............... Configure for use with Qt 3.x |
122 | 123 | ||
123 | -platform target ... The platform you are building on ($PLATFORM) | 124 | -platform target ... The platform you are building on ($PLATFORM) |
124 | EOF | 125 | EOF |
125 | exit 0; | 126 | exit 0; |
126 | fi | 127 | fi |
127 | 128 | ||
128 | CUSTOM=`echo $PLATFORM | sed -n -e "s/.*-\(.*\)-.*/\1/p"` | 129 | CUSTOM=`echo $PLATFORM | sed -n -e "s/.*-\(.*\)-.*/\1/p"` |
129 | 130 | ||
130 | if [ -f library/custom-$CUSTOM.h ] | 131 | if [ -f library/custom-$CUSTOM.h ] |
131 | then | 132 | then |
132 | rm -f library/custom.h | 133 | rm -f library/custom.h |
133 | ln -s custom-$CUSTOM.h library/custom.h | 134 | ln -s custom-$CUSTOM.h library/custom.h |
134 | fi | 135 | fi |
135 | 136 | ||
136 | mkdir -p include/qpe | 137 | mkdir -p include/qpe |
137 | ( cd include/qpe && rm -f *.h; ln -s ../../library/*.h .; ln -s ../../library/backend/*.h .; rm -f *_p.h; ) | 138 | ( cd include/qpe && rm -f *.h; ln -s ../../library/*.h .; ln -s ../../library/backend/*.h .; rm -f *_p.h; ) |
138 | 139 | ||
139 | mkdir -p include/opie | 140 | mkdir -p include/opie |
140 | ( cd include/opie && rm -f *.h; ln -s ../../libopie/*.h .; rm -f *_p.h; ) | 141 | ( cd include/opie && rm -f *.h; ln -s ../../libopie/*.h .; rm -f *_p.h; ) |
141 | 142 | ||
142 | |||
143 | echo Creating makefiles... | 143 | echo Creating makefiles... |
144 | 144 | ||
145 | # Set version for library directly | 145 | # Set version for library directly |
146 | # Version 1.5.0 right now for compat. | 146 | # Version 1.5.0 right now for compat. |
147 | sed -e 's/^\(VERSION.*= \).*/\1'1.5.0.$VERSION_PAT/ <library/library.pro >library/library.pro-v | 147 | sed -e 's/^\(VERSION.*= \).*/\1'1.5.0.$VERSION_PAT/ <library/library.pro >library/library.pro-v |
148 | mv library/library.pro-v library/library.pro | 148 | mv library/library.pro-v library/library.pro |
149 | 149 | ||
150 | if [ "$QT3" = yes ] | 150 | if [ "$QT3" = yes ] |
151 | then | 151 | then |
152 | VCONFIG="CONFIG+=qt3" | 152 | VCONFIG="CONFIG+=qt3" |
153 | else | 153 | else |
154 | VCONFIG="CONFIG+=qt2" | 154 | VCONFIG="CONFIG+=qt2" |
155 | fi | 155 | fi |
156 | 156 | ||
157 | if [ -f $TMAKEPATH/tmake.conf ] | 157 | if [ -f $TMAKEPATH/tmake.conf ] |
158 | then | 158 | then |
159 | # You have tmake. We'll regenerate the file for you... | 159 | # You have tmake. We'll regenerate the file for you... |
160 | echo "Makefiles will be regenerated." | 160 | echo "Makefiles will be regenerated." |
161 | fi | 161 | fi |
162 | 162 | ||
163 | H=`pwd` | 163 | H=`pwd` |
164 | if [ -z "$TOMAKE" ] | 164 | if [ -z "$TOMAKE" ] |
165 | then | 165 | then |
166 | TOMAKE=`make showcomponents` | 166 | TOMAKE=`make showcomponents` |
167 | fi | 167 | fi |
168 | 168 | ||
169 | for a in $TOMAKE ; do | 169 | for a in $TOMAKE ; do |
170 | N=$a/Makefile | 170 | N=$a/Makefile |
171 | M=$a/Makefile.in | 171 | M=$a/Makefile.in |
172 | O=$a/Makefile.add | 172 | O=$a/Makefile.add |
173 | f=`basename $a` | 173 | f=`basename $a` |
174 | 174 | ||
175 | if [ -f "$TMAKEPATH/tmake.conf" -a -f "$a/$f.pro" ] | 175 | if [ -f "$TMAKEPATH/tmake.conf" -a -f "$a/$f.pro" ] |
176 | then | 176 | then |
177 | ( cd $a; | 177 | ( cd $a; |
178 | TMAKEPATH=$QTDIR/tmake:$TMAKEPATH \ | 178 | TMAKEPATH=$QTDIR/tmake:$TMAKEPATH \ |
179 | tmake $QCONFIGARG CONFIG+=embedded $VCONFIG \ | 179 | tmake $QCONFIGARG CONFIG+=embedded $VCONFIG \ |
180 | -t $H/qt/tmake/propagate.t $f.pro | | 180 | -t $H/qt/tmake/propagate.t $f.pro | |
181 | sed -e "s|$QTDIR|\$(QTDIR)|g" -e "s|$OPIEDIR|\$(OPIEDIR)|g" >Makefile.in; | 181 | sed -e "s|$QTDIR|\$(QTDIR)|g" -e "s|$OPIEDIR|\$(OPIEDIR)|g" >Makefile.in; |
182 | ) | 182 | ) |
183 | echo -n "." | 183 | echo -n "." |
184 | #echo Building $N.. | 184 | #echo Building $N.. |
185 | appname=`grep '^TARGET' $a/$f.pro | sed 's/^TARGET.*=//' | sed 's/ //g'` | 185 | appname=`grep '^TARGET' $a/$f.pro | sed 's/^TARGET.*=//' | tr -d " \t"` |
186 | translation=`grep '^TRANSLATION.*[^+]=.*' $a/$f.pro | sed 's,^TRANSL.*=.*i18n\/.*\/,,' | sed 's/ //g' | sed 's,\.ts.*,,' | sed 's,^lib,,' ` | 186 | translation=`grep '^TRANSLATION.*[^+]=.*' $a/$f.pro | sed 's,^TRANSL.*=.*i18n\/.*\/,,' | sed 's/ //g' | sed 's,\.ts.*,,' | sed 's,^lib,,' ` |
187 | if [ -n "$translation" -a -n "$appname" ] | 187 | if [ -n "$translation" -a -n "$appname" ] |
188 | then | 188 | then |
189 | if [ "$appname" != "$translation" ] | 189 | if [ "$appname" != "$translation" ] |
190 | then | 190 | then |
191 | echo | 191 | echo |
192 | echo "Warning: translation and appname disagree in $a/$f.pro" | 192 | echo "Warning: translation and appname disagree in $a/$f.pro" |
193 | fi | 193 | fi |
194 | fi | 194 | fi |
195 | 195 | ||
196 | fi | 196 | fi |
197 | 197 | ||
198 | cat > $N <<EOF | 198 | cat > $N <<EOF |
199 | ############################################################################# | 199 | ############################################################################# |
200 | # Automatically generated from $M | 200 | # Automatically generated from $M |
201 | # Build options from $1 | 201 | # Build options from $1 |
202 | ############################################################################# | 202 | ############################################################################# |
203 | 203 | ||
204 | EOF | 204 | EOF |
205 | 205 | ||
206 | SED= | 206 | SED= |
207 | PLATFORM_CFLAGS= | 207 | PLATFORM_CFLAGS= |
208 | 208 | ||
209 | if [ "$f" = "embeddedkonsole" ] | 209 | if [ "$f" = "embeddedkonsole" ] |
210 | then | 210 | then |
211 | case $PLATFORM in | 211 | case $PLATFORM in |
212 | *x86*|*generic*|*ipaq*|*sharp*) | 212 | *x86*|*generic*|*ipaq*|*sharp*) |
213 | SED="$SED /^LIBS.*=/s/\$/ -lutil/;" | 213 | SED="$SED /^LIBS.*=/s/\$/ -lutil/;" |
214 | PLATFORM_CFLAGS="-DHAVE_OPENPTY" | 214 | PLATFORM_CFLAGS="-DHAVE_OPENPTY" |
215 | ;; *) | 215 | ;; *) |
216 | SED= | 216 | SED= |
217 | esac | 217 | esac |
218 | elif [ "$f" = "libmpeg3" ] | 218 | elif [ "$f" = "libmpeg3" ] |
219 | then | 219 | then |
220 | # Patch our Makefile.in file with the platform specifics for the libmpeg3 library | 220 | # Patch our Makefile.in file with the platform specifics for the libmpeg3 library |
221 | # Use the C++ compiler to compile the .c files (because the fixed-point classes are C++ code) | 221 | # Use the C++ compiler to compile the .c files (because the fixed-point classes are C++ code) |
222 | SED='s/\$(CC)/\$(CXX)/;' | 222 | SED='s/\$(CC)/\$(CXX)/;' |
223 | case $PLATFORM | 223 | case $PLATFORM |
224 | in | 224 | in |
225 | # For x86 turn on using floating point, compile mmx and css code | 225 | # For x86 turn on using floating point, compile mmx and css code |
226 | *x86*) | 226 | *x86*) |
227 | # "-funroll-loops -fomit-frame-pointer -malign-loops=2 -malign-jumps=2 -malign-functions=2 -march=i486" | 227 | # "-funroll-loops -fomit-frame-pointer -malign-loops=2 -malign-jumps=2 -malign-functions=2 -march=i486" |
228 | PLATFORM_CFLAGS="-DHAVE_MMX -DHAVE_CSS" | 228 | PLATFORM_CFLAGS="-DHAVE_MMX -DHAVE_CSS" |
229 | SED="$SED /SOURCES.*=/s/=/= video\\/mmxidct.S video\\/reconmmx.s\ /;" | 229 | SED="$SED /SOURCES.*=/s/=/= video\\/mmxidct.S video\\/reconmmx.s\ /;" |
230 | # For generic turn on using floating point | 230 | # For generic turn on using floating point |
231 | ;; *generic*) | 231 | ;; *generic*) |
232 | PLATFORM_CFLAGS="" | 232 | PLATFORM_CFLAGS="" |
233 | # For the ipaq use fixed point maths, don't compile the mmx or css code | 233 | # For the ipaq use fixed point maths, don't compile the mmx or css code |
234 | ;; *ipaq*|*sharp*) | 234 | ;; *ipaq*|*sharp*) |
235 | PLATFORM_CFLAGS="-DUSE_FIXED_POINT" | 235 | PLATFORM_CFLAGS="-DUSE_FIXED_POINT" |
236 | ;; *) | 236 | ;; *) |
237 | # For 'other platforms', turn off optimizations and use fixed point | 237 | # For 'other platforms', turn off optimizations and use fixed point |
238 | PLATFORM_CFLAGS="-O -DUSE_FIXED_POINT" | 238 | PLATFORM_CFLAGS="-O -DUSE_FIXED_POINT" |
239 | esac | 239 | esac |
240 | elif [ "$f" = "libmad" ] | 240 | elif [ "$f" = "libmad" ] |
241 | then | 241 | then |
242 | # Patch our Makefile.in file with the platform specifics for the libmad library | 242 | # Patch our Makefile.in file with the platform specifics for the libmad library |
243 | case $PLATFORM | 243 | case $PLATFORM |
244 | in | 244 | in |
245 | # For x86 use intel optimizations | 245 | # For x86 use intel optimizations |
246 | *x86*) | 246 | *x86*) |
247 | PLATFORM_CFLAGS="-DFPM_INTEL" | 247 | PLATFORM_CFLAGS="-DFPM_INTEL" |
248 | # For the ipaq use ARM asm optimizations | 248 | # For the ipaq use ARM asm optimizations |
249 | ;; *ipaq*|*sharp*) | 249 | ;; *ipaq*|*sharp*) |
250 | PLATFORM_CFLAGS="-DFPM_ARM" | 250 | PLATFORM_CFLAGS="-DFPM_ARM" |
251 | SED="$SED /SOURCES.*=/s/=/= idmt_arm.S /;" | 251 | SED="$SED /SOURCES.*=/s/=/= idmt_arm.S /;" |
252 | # For generic platforms use the C 64-bit implementation | 252 | # For generic platforms use the C 64-bit implementation |
253 | ;; *generic*) | 253 | ;; *generic*) |
254 | PLATFORM_CFLAGS="-DFPM_64BIT" | 254 | PLATFORM_CFLAGS="-DFPM_64BIT" |
255 | # For 'other platforms' use the ARM code | 255 | # For 'other platforms' use the ARM code |
256 | ;; *) | 256 | ;; *) |
257 | PLATFORM_CFLAGS="-DFPM_ARM" | 257 | PLATFORM_CFLAGS="-DFPM_ARM" |
258 | SED="$SED /SOURCES.*=/s/=/= idmt_arm.S /;" | 258 | SED="$SED /SOURCES.*=/s/=/= idmt_arm.S /;" |
259 | esac | 259 | esac |
260 | fi | 260 | fi |
261 | if [ -n "$PLATFORM_CFLAGS" ] | 261 | if [ -n "$PLATFORM_CFLAGS" ] |
262 | then | 262 | then |
263 | # Append the addition c-flags we have defined | 263 | # Append the addition c-flags we have defined |
264 | SED="$SED /CFLAGS.*=.*/s/\$/ $PLATFORM_CFLAGS/;" | 264 | SED="$SED /CFLAGS.*=.*/s/\$/ $PLATFORM_CFLAGS/;" |
265 | SED="$SED /CXXFLAGS.*=.*/s/\$/ $PLATFORM_CFLAGS/;" | 265 | SED="$SED /CXXFLAGS.*=.*/s/\$/ $PLATFORM_CFLAGS/;" |
266 | fi | 266 | fi |
267 | cat $TARGET >> $N | 267 | cat $TARGET >> $N |
268 | if [ -n "$SED" ] | 268 | if [ -n "$SED" ] |
269 | then | 269 | then |
270 | sed -e "$SED" $M >> $N | 270 | sed -e "$SED" $M >> $N |
271 | else | 271 | else |
272 | cat $M >> $N | 272 | cat $M >> $N |
273 | fi | 273 | fi |
274 | 274 | ||
275 | cat >> $N <<EOF | 275 | cat >> $N <<EOF |
276 | 276 | ||
277 | lupdate: | 277 | lupdate: |
278 | lupdate $f.pro | 278 | lupdate $f.pro |
279 | 279 | ||
280 | lrelease: | 280 | lrelease: |
281 | lrelease $f.pro | 281 | lrelease $f.pro |
282 | 282 | ||
283 | EOF | 283 | EOF |
284 | if [ -f "$O" ] | 284 | if [ -f "$O" ] |
285 | then | 285 | then |
286 | cat >> $N $O | 286 | cat >> $N $O |
287 | fi | 287 | fi |
288 | 288 | ||
289 | done | 289 | done |
290 | 290 | ||
291 | MAKE=make | 291 | MAKE=make |
292 | echo | 292 | echo |
293 | echo "Opie is now configured for building. Just run $MAKE (or $MAKE single)." | 293 | echo "Opie is now configured for building. Just run $MAKE (or $MAKE single)." |
294 | echo "To reconfigure, run $MAKE clean and configure." | 294 | echo "To reconfigure, run $MAKE clean and configure." |
295 | echo | 295 | echo |
diff --git a/core/applets/batteryapplet/batteryapplet.pro b/core/applets/batteryapplet/batteryapplet.pro index b854b89..c24182e 100644 --- a/core/applets/batteryapplet/batteryapplet.pro +++ b/core/applets/batteryapplet/batteryapplet.pro | |||
@@ -1,22 +1,25 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= battery.h batterystatus.h batteryappletimpl.h | 3 | HEADERS= battery.h batterystatus.h batteryappletimpl.h |
4 | SOURCES= battery.cpp batterystatus.cpp batteryappletimpl.cpp | 4 | SOURCES= battery.cpp batterystatus.cpp batteryappletimpl.cpp |
5 | TARGET = batteryapplet | 5 | TARGET = batteryapplet |
6 | DESTDIR = $(OPIEDIR)/plugins/applets | 6 | DESTDIR = $(OPIEDIR)/plugins/applets |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += ../$(OPIEDIR)/include .. | 8 | DEPENDPATH += ../$(OPIEDIR)/include .. |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | 11 | ||
12 | TRANSLATIONS = ../../i18n/de/libbatteryapplet.ts | 12 | TRANSLATIONS = ../../../i18n/de/libbatteryapplet.ts \ |
13 | TRANSLATIONS += ../../i18n/es/libbatteryapplet.ts | 13 | ../../../i18n/en/libbatteryapplet.ts \ |
14 | TRANSLATIONS += ../../i18n/pt/libbatteryapplet.ts | 14 | ../../../i18n/es/libbatteryapplet.ts \ |
15 | TRANSLATIONS += ../../i18n/pt_BR/libbatteryapplet.ts | 15 | ../../../i18n/fr/libbatteryapplet.ts \ |
16 | TRANSLATIONS += ../../i18n/en/libbatteryapplet.ts | 16 | ../../../i18n/hu/libbatteryapplet.ts \ |
17 | TRANSLATIONS += ../../i18n/hu/libbatteryapplet.ts | 17 | ../../../i18n/ja/libbatteryapplet.ts \ |
18 | TRANSLATIONS += ../../i18n/ja/libbatteryapplet.ts | 18 | ../../../i18n/ko/libbatteryapplet.ts \ |
19 | TRANSLATIONS += ../../i18n/ko/libbatteryapplet.ts | 19 | ../../../i18n/no/libbatteryapplet.ts \ |
20 | TRANSLATIONS += ../../i18n/no/libbatteryapplet.ts | 20 | ../../../i18n/pl/libbatteryapplet.ts \ |
21 | TRANSLATIONS += ../../i18n/zh_CN/libbatteryapplet.ts | 21 | ../../../i18n/pt/libbatteryapplet.ts \ |
22 | TRANSLATIONS += ../../i18n/zh_TW/libbatteryapplet.ts | 22 | ../../../i18n/pt_BR/libbatteryapplet.ts \ |
23 | ../../../i18n/sl/libbatteryapplet.ts \ | ||
24 | ../../../i18n/zh_CN/libbatteryapplet.ts \ | ||
25 | ../../../i18n/zh_TW/libbatteryapplet.ts | ||
diff --git a/core/applets/cardmon/cardmon.pro b/core/applets/cardmon/cardmon.pro index 3bddd22..aa34042 100644 --- a/core/applets/cardmon/cardmon.pro +++ b/core/applets/cardmon/cardmon.pro | |||
@@ -1,28 +1,25 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS =cardmon.h cardmonimpl.h | 3 | HEADERS =cardmon.h cardmonimpl.h |
4 | SOURCES =cardmon.cpp cardmonimpl.cpp | 4 | SOURCES =cardmon.cpp cardmonimpl.cpp |
5 | TARGET = cardmonapplet | 5 | TARGET = cardmonapplet |
6 | DESTDIR = $(OPIEDIR)/plugins/applets | 6 | DESTDIR = $(OPIEDIR)/plugins/applets |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += $(OPIEDIR)/include ../launcher | 8 | DEPENDPATH += $(OPIEDIR)/include ../launcher |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | 11 | ||
12 | 12 | TRANSLATIONS = ../../../i18n/de/libcardmonapplet.ts \ | |
13 | 13 | ../../../i18n/en/libcardmonapplet.ts \ | |
14 | TRANSLATIONS = ../../../i18n/de/libcardmonapplet.ts | 14 | ../../../i18n/es/libcardmonapplet.ts \ |
15 | TRANSLATIONS += ../../../i18n/en/libcardmonapplet.ts | 15 | ../../../i18n/fr/libcardmonapplet.ts \ |
16 | TRANSLATIONS += ../../../i18n/es/libcardmonapplet.ts | 16 | ../../../i18n/hu/libcardmonapplet.ts \ |
17 | TRANSLATIONS += ../../../i18n/fr/libcardmonapplet.ts | 17 | ../../../i18n/ja/libcardmonapplet.ts \ |
18 | TRANSLATIONS += ../../../i18n/hu/libcardmonapplet.ts | 18 | ../../../i18n/ko/libcardmonapplet.ts \ |
19 | TRANSLATIONS += ../../../i18n/ja/libcardmonapplet.ts | 19 | ../../../i18n/no/libcardmonapplet.ts \ |
20 | TRANSLATIONS += ../../../i18n/ko/libcardmonapplet.ts | 20 | ../../../i18n/pl/libcardmonapplet.ts \ |
21 | TRANSLATIONS += ../../../i18n/no/libcardmonapplet.ts | 21 | ../../../i18n/pt/libcardmonapplet.ts \ |
22 | TRANSLATIONS += ../../../i18n/pl/libcardmonapplet.ts | 22 | ../../../i18n/pt_BR/libcardmonapplet.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt/libcardmonapplet.ts | 23 | ../../../i18n/sl/libcardmonapplet.ts \ |
24 | TRANSLATIONS += ../../../i18n/pt_BR/libcardmonapplet.ts | 24 | ../../../i18n/zh_CN/libcardmonapplet.ts \ |
25 | TRANSLATIONS += ../../../i18n/sl/libcardmonapplet.ts | 25 | ../../../i18n/zh_TW/libcardmonapplet.ts |
26 | TRANSLATIONS += ../../../i18n/zh_CN/libcardmonapplet.ts | ||
27 | TRANSLATIONS += ../../../i18n/zh_TW/libcardmonapplet.ts | ||
28 | |||
diff --git a/core/applets/clipboardapplet/clipboardapplet.pro b/core/applets/clipboardapplet/clipboardapplet.pro index 36fbc49..23b5525 100644 --- a/core/applets/clipboardapplet/clipboardapplet.pro +++ b/core/applets/clipboardapplet/clipboardapplet.pro | |||
@@ -1,14 +1,25 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= clipboard.h clipboardappletimpl.h | 3 | HEADERS= clipboard.h clipboardappletimpl.h |
4 | SOURCES= clipboard.cpp clipboardappletimpl.cpp | 4 | SOURCES= clipboard.cpp clipboardappletimpl.cpp |
5 | TARGET = clipboardapplet | 5 | TARGET = clipboardapplet |
6 | DESTDIR = $(OPIEDIR)/plugins/applets | 6 | DESTDIR = $(OPIEDIR)/plugins/applets |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += ../$(OPIEDIR)/include | 8 | DEPENDPATH += ../$(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | 11 | ||
12 | TRANSLATIONS = ../../i18n/pt_BR/libclipboardapplet.ts | 12 | TRANSLATIONS = ../../../i18n/de/libclipboardapplet.ts \ |
13 | TRANSLATIONS += ../../i18n/es/libclipboardapplet.ts | 13 | ../../../i18n/en/libclipboardapplet.ts \ |
14 | TRANSLATIONS += ../../i18n/pt/libclipboardapplet.ts | 14 | ../../../i18n/es/libclipboardapplet.ts \ |
15 | ../../../i18n/fr/libclipboardapplet.ts \ | ||
16 | ../../../i18n/hu/libclipboardapplet.ts \ | ||
17 | ../../../i18n/ja/libclipboardapplet.ts \ | ||
18 | ../../../i18n/ko/libclipboardapplet.ts \ | ||
19 | ../../../i18n/no/libclipboardapplet.ts \ | ||
20 | ../../../i18n/pl/libclipboardapplet.ts \ | ||
21 | ../../../i18n/pt/libclipboardapplet.ts \ | ||
22 | ../../../i18n/pt_BR/libclipboardapplet.ts \ | ||
23 | ../../../i18n/sl/libclipboardapplet.ts \ | ||
24 | ../../../i18n/zh_CN/libclipboardapplet.ts \ | ||
25 | ../../../i18n/zh_TW/libclipboardapplet.ts | ||
diff --git a/core/applets/clockapplet/clockapplet.pro b/core/applets/clockapplet/clockapplet.pro index 2dc1784..ca26ec8 100644 --- a/core/applets/clockapplet/clockapplet.pro +++ b/core/applets/clockapplet/clockapplet.pro | |||
@@ -1,15 +1,25 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= clock.h clockappletimpl.h | 3 | HEADERS= clock.h clockappletimpl.h |
4 | SOURCES= clock.cpp clockappletimpl.cpp | 4 | SOURCES= clock.cpp clockappletimpl.cpp |
5 | TARGET = clockapplet | 5 | TARGET = clockapplet |
6 | DESTDIR = $(OPIEDIR)/plugins/applets | 6 | DESTDIR = $(OPIEDIR)/plugins/applets |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += ../$(OPIEDIR)/include .. | 8 | DEPENDPATH += ../$(OPIEDIR)/include .. |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | 11 | ||
12 | TRANSLATIONS = ../../i18n/de/libclockapplet.ts | 12 | TRANSLATIONS = ../../../i18n/de/libclockapplet.ts \ |
13 | TRANSLATIONS += ../../i18n/es/libclockapplet.ts | 13 | ../../../i18n/en/libclockapplet.ts \ |
14 | TRANSLATIONS += ../../i18n/pt/libclockapplet.ts | 14 | ../../../i18n/es/libclockapplet.ts \ |
15 | TRANSLATIONS += ../../i18n/pt_BR/libclockapplet.ts | 15 | ../../../i18n/fr/libclockapplet.ts \ |
16 | ../../../i18n/hu/libclockapplet.ts \ | ||
17 | ../../../i18n/ja/libclockapplet.ts \ | ||
18 | ../../../i18n/ko/libclockapplet.ts \ | ||
19 | ../../../i18n/no/libclockapplet.ts \ | ||
20 | ../../../i18n/pl/libclockapplet.ts \ | ||
21 | ../../../i18n/pt/libclockapplet.ts \ | ||
22 | ../../../i18n/pt_BR/libclockapplet.ts \ | ||
23 | ../../../i18n/sl/libclockapplet.ts \ | ||
24 | ../../../i18n/zh_CN/libclockapplet.ts \ | ||
25 | ../../../i18n/zh_TW/libclockapplet.ts | ||
diff --git a/core/applets/irdaapplet/irdaapplet.pro b/core/applets/irdaapplet/irdaapplet.pro index 47267f7..af4231b 100644 --- a/core/applets/irdaapplet/irdaapplet.pro +++ b/core/applets/irdaapplet/irdaapplet.pro | |||
@@ -1,28 +1,25 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = irda.h irdaappletimpl.h | 3 | HEADERS = irda.h irdaappletimpl.h |
4 | SOURCES = irda.cpp irdaappletimpl.cpp | 4 | SOURCES = irda.cpp irdaappletimpl.cpp |
5 | TARGET = irdaapplet | 5 | TARGET = irdaapplet |
6 | DESTDIR = $(OPIEDIR)/plugins/applets | 6 | DESTDIR = $(OPIEDIR)/plugins/applets |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += ../$(OPIEDIR)/include | 8 | DEPENDPATH += ../$(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | 11 | ||
12 | 12 | TRANSLATIONS = ../../../i18n/de/libirdaapplet.ts \ | |
13 | 13 | ../../../i18n/en/libirdaapplet.ts \ | |
14 | TRANSLATIONS = ../../../i18n/de/libirdaapplet.ts | 14 | ../../../i18n/es/libirdaapplet.ts \ |
15 | TRANSLATIONS += ../../../i18n/en/libirdaapplet.ts | 15 | ../../../i18n/fr/libirdaapplet.ts \ |
16 | TRANSLATIONS += ../../../i18n/es/libirdaapplet.ts | 16 | ../../../i18n/hu/libirdaapplet.ts \ |
17 | TRANSLATIONS += ../../../i18n/fr/libirdaapplet.ts | 17 | ../../../i18n/ja/libirdaapplet.ts \ |
18 | TRANSLATIONS += ../../../i18n/hu/libirdaapplet.ts | 18 | ../../../i18n/ko/libirdaapplet.ts \ |
19 | TRANSLATIONS += ../../../i18n/ja/libirdaapplet.ts | 19 | ../../../i18n/no/libirdaapplet.ts \ |
20 | TRANSLATIONS += ../../../i18n/ko/libirdaapplet.ts | 20 | ../../../i18n/pl/libirdaapplet.ts \ |
21 | TRANSLATIONS += ../../../i18n/no/libirdaapplet.ts | 21 | ../../../i18n/pt/libirdaapplet.ts \ |
22 | TRANSLATIONS += ../../../i18n/pl/libirdaapplet.ts | 22 | ../../../i18n/pt_BR/libirdaapplet.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt/libirdaapplet.ts | 23 | ../../../i18n/sl/libirdaapplet.ts \ |
24 | TRANSLATIONS += ../../../i18n/pt_BR/libirdaapplet.ts | 24 | ../../../i18n/zh_CN/libirdaapplet.ts \ |
25 | TRANSLATIONS += ../../../i18n/sl/libirdaapplet.ts | 25 | ../../../i18n/zh_TW/libirdaapplet.ts |
26 | TRANSLATIONS += ../../../i18n/zh_CN/libirdaapplet.ts | ||
27 | TRANSLATIONS += ../../../i18n/zh_TW/libirdaapplet.ts | ||
28 | |||
diff --git a/core/applets/obex/obex.pro b/core/applets/obex/obex.pro index a8c2340..3c08682 100644 --- a/core/applets/obex/obex.pro +++ b/core/applets/obex/obex.pro | |||
@@ -1,12 +1,26 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= obex.h obeximpl.h | 3 | HEADERS= obex.h obeximpl.h |
4 | SOURCES= obex.cc obeximpl.cc | 4 | SOURCES= obex.cc obeximpl.cc |
5 | TARGET = opieobex | 5 | TARGET = opieobex |
6 | DESTDIR = $(OPIEDIR)/plugins/obex | 6 | DESTDIR = $(OPIEDIR)/plugins/obex |
7 | INCLUDEPATH += $(OPIEDIR)/include $(OPIEDIR)/core/launcher | 7 | INCLUDEPATH += $(OPIEDIR)/include $(OPIEDIR)/core/launcher |
8 | DEPENDPATH += ../$(OPIEDIR)/include | 8 | DEPENDPATH += ../$(OPIEDIR)/include |
9 | INTERFACES = obexinc.ui obexdlg.ui | 9 | INTERFACES = obexinc.ui obexdlg.ui |
10 | LIBS += -lqpe -lopie | 10 | LIBS += -lqpe -lopie |
11 | VERSION = 0.0.1 | 11 | VERSION = 0.0.1 |
12 | 12 | ||
13 | TRANSLATIONS = ../../../i18n/de/libopieobex.ts \ | ||
14 | ../../../i18n/en/libopieobex.ts \ | ||
15 | ../../../i18n/es/libopieobex.ts \ | ||
16 | ../../../i18n/fr/libopieobex.ts \ | ||
17 | ../../../i18n/hu/libopieobex.ts \ | ||
18 | ../../../i18n/ja/libopieobex.ts \ | ||
19 | ../../../i18n/ko/libopieobex.ts \ | ||
20 | ../../../i18n/no/libopieobex.ts \ | ||
21 | ../../../i18n/pl/libopieobex.ts \ | ||
22 | ../../../i18n/pt/libopieobex.ts \ | ||
23 | ../../../i18n/pt_BR/libopieobex.ts \ | ||
24 | ../../../i18n/sl/libopieobex.ts \ | ||
25 | ../../../i18n/zh_CN/libopieobex.ts \ | ||
26 | ../../../i18n/zh_TW/libopieobex.ts | ||
diff --git a/core/applets/screenshotapplet/screenshotapplet.pro b/core/applets/screenshotapplet/screenshotapplet.pro index 6b97a2d..2fc8a05 100644 --- a/core/applets/screenshotapplet/screenshotapplet.pro +++ b/core/applets/screenshotapplet/screenshotapplet.pro | |||
@@ -1,27 +1,27 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = screenshot.h screenshotappletimpl.h | 3 | HEADERS = screenshot.h screenshotappletimpl.h |
4 | SOURCES = screenshot.cpp screenshotappletimpl.cpp | 4 | SOURCES = screenshot.cpp screenshotappletimpl.cpp |
5 | TARGET = screenshotapplet | 5 | TARGET = screenshotapplet |
6 | DESTDIR = $(OPIEDIR)/plugins/applets | 6 | DESTDIR = $(OPIEDIR)/plugins/applets |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += ../$(OPIEDIR)/include | 8 | DEPENDPATH += ../$(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | MOC_DIR=opieobj | 11 | MOC_DIR=opieobj |
12 | OBJECTS_DIR=opieobj | 12 | OBJECTS_DIR=opieobj |
13 | 13 | ||
14 | TRANSLATIONS = ../../i18n/pt_BR/libscreenshotapplet.ts | 14 | TRANSLATIONS = ../../../i18n/de/libscreenshotapplet.ts \ |
15 | TRANSLATIONS += ../../i18n/pt/libscreenshotapplet.ts | 15 | ../../../i18n/en/libscreenshotapplet.ts \ |
16 | TRANSLATIONS += ../../i18n/de/libscreenshotapplet.ts | 16 | ../../../i18n/es/libscreenshotapplet.ts \ |
17 | TRANSLATIONS += ../../i18n/en/libscreenshotapplet.ts | 17 | ../../../i18n/fr/libscreenshotapplet.ts \ |
18 | TRANSLATIONS += ../../i18n/es/libscreenshotapplet.ts | 18 | ../../../i18n/hu/libscreenshotapplet.ts \ |
19 | TRANSLATIONS += ../../i18n/fr/libscreenshotapplet.ts | 19 | ../../../i18n/ja/libscreenshotapplet.ts \ |
20 | TRANSLATIONS += ../../i18n/hu/libscreenshotapplet.ts | 20 | ../../../i18n/ko/libscreenshotapplet.ts \ |
21 | TRANSLATIONS += ../../i18n/ja/libscreenshotapplet.ts | 21 | ../../../i18n/no/libscreenshotapplet.ts \ |
22 | TRANSLATIONS += ../../i18n/ko/libscreenshotapplet.ts | 22 | ../../../i18n/pl/libscreenshotapplet.ts \ |
23 | TRANSLATIONS += ../../i18n/no/libscreenshotapplet.ts | 23 | ../../../i18n/pt/libscreenshotapplet.ts \ |
24 | TRANSLATIONS += ../../i18n/pl/libscreenshotapplet.ts | 24 | ../../../i18n/pt_BR/libscreenshotapplet.ts \ |
25 | TRANSLATIONS += ../../i18n/sl/libscreenshotapplet.ts | 25 | ../../../i18n/sl/libscreenshotapplet.ts \ |
26 | TRANSLATIONS += ../../i18n/zh_CN/libscreenshotapplet.ts | 26 | ../../../i18n/zh_CN/libscreenshotapplet.ts \ |
27 | TRANSLATIONS += ../../i18n/zh_TW/libscreenshotapplet.ts | 27 | ../../../i18n/zh_TW/libscreenshotapplet.ts |
diff --git a/core/applets/vmemo/vmemo.pro b/core/applets/vmemo/vmemo.pro index 734cf5c..f8007b6 100644 --- a/core/applets/vmemo/vmemo.pro +++ b/core/applets/vmemo/vmemo.pro | |||
@@ -1,14 +1,25 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= vmemo.h vmemoimpl.h | 3 | HEADERS= vmemo.h vmemoimpl.h |
4 | SOURCES= vmemo.cpp vmemoimpl.cpp | 4 | SOURCES= vmemo.cpp vmemoimpl.cpp |
5 | TARGET = vmemoapplet | 5 | TARGET = vmemoapplet |
6 | DESTDIR =$(OPIEDIR)/plugins/applets | 6 | DESTDIR =$(OPIEDIR)/plugins/applets |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += $(OPIEDIR)/include | 8 | DEPENDPATH += $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | 11 | ||
12 | TRANSLATIONS = ../../i18n/pt_BR/libvmemoapplet.ts | 12 | TRANSLATIONS = ../../../i18n/de/libvmemoapplet.ts \ |
13 | TRANSLATIONS += ../../i18n/es/libvmemoapplet.ts | 13 | ../../../i18n/en/libvmemoapplet.ts \ |
14 | TRANSLATIONS += ../../i18n/pt/libvmemoapplet.ts | 14 | ../../../i18n/es/libvmemoapplet.ts \ |
15 | ../../../i18n/fr/libvmemoapplet.ts \ | ||
16 | ../../../i18n/hu/libvmemoapplet.ts \ | ||
17 | ../../../i18n/ja/libvmemoapplet.ts \ | ||
18 | ../../../i18n/ko/libvmemoapplet.ts \ | ||
19 | ../../../i18n/no/libvmemoapplet.ts \ | ||
20 | ../../../i18n/pl/libvmemoapplet.ts \ | ||
21 | ../../../i18n/pt/libvmemoapplet.ts \ | ||
22 | ../../../i18n/pt_BR/libvmemoapplet.ts \ | ||
23 | ../../../i18n/sl/libvmemoapplet.ts \ | ||
24 | ../../../i18n/zh_CN/libvmemoapplet.ts \ | ||
25 | ../../../i18n/zh_TW/libvmemoapplet.ts | ||
diff --git a/core/applets/volumeapplet/volumeapplet.pro b/core/applets/volumeapplet/volumeapplet.pro index 937a537..8cfb0d3 100644 --- a/core/applets/volumeapplet/volumeapplet.pro +++ b/core/applets/volumeapplet/volumeapplet.pro | |||
@@ -1,15 +1,25 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= volume.h volumeappletimpl.h oledbox.h | 3 | HEADERS= volume.h volumeappletimpl.h oledbox.h |
4 | SOURCES= volume.cpp volumeappletimpl.cpp oledbox.cpp | 4 | SOURCES= volume.cpp volumeappletimpl.cpp oledbox.cpp |
5 | TARGET = volumeapplet | 5 | TARGET = volumeapplet |
6 | DESTDIR = $(OPIEDIR)/plugins/applets | 6 | DESTDIR = $(OPIEDIR)/plugins/applets |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += ../$(OPIEDIR)/include | 8 | DEPENDPATH += ../$(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | 11 | ||
12 | TRANSLATIONS = ../../i18n/de/libvolumeapplet.ts | 12 | TRANSLATIONS = ../../../i18n/de/libvolumeapplet.ts \ |
13 | TRANSLATIONS += ../../i18n/es/libvolumeapplet.ts | 13 | ../../../i18n/en/libvolumeapplet.ts \ |
14 | TRANSLATIONS += ../../i18n/pt/libvolumeapplet.ts | 14 | ../../../i18n/es/libvolumeapplet.ts \ |
15 | TRANSLATIONS += ../../i18n/pt_BR/libvolumeapplet.ts | 15 | ../../../i18n/fr/libvolumeapplet.ts \ |
16 | ../../../i18n/hu/libvolumeapplet.ts \ | ||
17 | ../../../i18n/ja/libvolumeapplet.ts \ | ||
18 | ../../../i18n/ko/libvolumeapplet.ts \ | ||
19 | ../../../i18n/no/libvolumeapplet.ts \ | ||
20 | ../../../i18n/pl/libvolumeapplet.ts \ | ||
21 | ../../../i18n/pt/libvolumeapplet.ts \ | ||
22 | ../../../i18n/pt_BR/libvolumeapplet.ts \ | ||
23 | ../../../i18n/sl/libvolumeapplet.ts \ | ||
24 | ../../../i18n/zh_CN/libvolumeapplet.ts \ | ||
25 | ../../../i18n/zh_TW/libvolumeapplet.ts | ||
diff --git a/core/apps/calibrate/calibrate.pro b/core/apps/calibrate/calibrate.pro index 9769ea6..b1fce27 100644 --- a/core/apps/calibrate/calibrate.pro +++ b/core/apps/calibrate/calibrate.pro | |||
@@ -1 +1,16 @@ | |||
1 | # This is part of the taskbar | 1 | # This is part of the taskbar |
2 | |||
3 | TRANSLATIONS = ../../../i18n/de/calibrate.pro.in.ts \ | ||
4 | ../../../i18n/en/calibrate.pro.in.ts \ | ||
5 | ../../../i18n/es/calibrate.pro.in.ts \ | ||
6 | ../../../i18n/fr/calibrate.pro.in.ts \ | ||
7 | ../../../i18n/hu/calibrate.pro.in.ts \ | ||
8 | ../../../i18n/ja/calibrate.pro.in.ts \ | ||
9 | ../../../i18n/ko/calibrate.pro.in.ts \ | ||
10 | ../../../i18n/no/calibrate.pro.in.ts \ | ||
11 | ../../../i18n/pl/calibrate.pro.in.ts \ | ||
12 | ../../../i18n/pt/calibrate.pro.in.ts \ | ||
13 | ../../../i18n/pt_BR/calibrate.pro.in.ts \ | ||
14 | ../../../i18n/sl/calibrate.pro.in.ts \ | ||
15 | ../../../i18n/zh_CN/calibrate.pro.in.ts \ | ||
16 | ../../../i18n/zh_TW/calibrate.pro.in.ts | ||
diff --git a/core/apps/embeddedkonsole/embeddedkonsole.pro b/core/apps/embeddedkonsole/embeddedkonsole.pro index 6e6860e..de0cfa1 100755 --- a/core/apps/embeddedkonsole/embeddedkonsole.pro +++ b/core/apps/embeddedkonsole/embeddedkonsole.pro | |||
@@ -1,50 +1,50 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = TEWidget.h \ | 4 | HEADERS = TEWidget.h \ |
5 | TEScreen.h \ | 5 | TEScreen.h \ |
6 | TECommon.h \ | 6 | TECommon.h \ |
7 | TEHistory.h \ | 7 | TEHistory.h \ |
8 | TEmulation.h \ | 8 | TEmulation.h \ |
9 | TEmuVt102.h \ | 9 | TEmuVt102.h \ |
10 | session.h \ | 10 | session.h \ |
11 | keytrans.h \ | 11 | keytrans.h \ |
12 | konsole.h \ | 12 | konsole.h \ |
13 | commandeditdialog.h \ | 13 | commandeditdialog.h \ |
14 | commandeditwidget.h \ | 14 | commandeditwidget.h \ |
15 | playlistselection.h \ | 15 | playlistselection.h \ |
16 | MyPty.h | 16 | MyPty.h |
17 | SOURCES = TEScreen.cpp \ | 17 | SOURCES = TEScreen.cpp \ |
18 | TEWidget.cpp \ | 18 | TEWidget.cpp \ |
19 | TEHistory.cpp \ | 19 | TEHistory.cpp \ |
20 | TEmulation.cpp \ | 20 | TEmulation.cpp \ |
21 | TEmuVt102.cpp \ | 21 | TEmuVt102.cpp \ |
22 | session.cpp \ | 22 | session.cpp \ |
23 | keytrans.cpp \ | 23 | keytrans.cpp \ |
24 | konsole.cpp \ | 24 | konsole.cpp \ |
25 | commandeditdialog.cpp \ | 25 | commandeditdialog.cpp \ |
26 | commandeditwidget.cpp \ | 26 | commandeditwidget.cpp \ |
27 | playlistselection.cpp \ | 27 | playlistselection.cpp \ |
28 | MyPty.cpp \ | 28 | MyPty.cpp \ |
29 | main.cpp | 29 | main.cpp |
30 | INTERFACES = commandeditdialogbase.ui smallcommandeditdialogbase.ui | 30 | INTERFACES = commandeditdialogbase.ui smallcommandeditdialogbase.ui |
31 | TARGET = embeddedkonsole | 31 | TARGET = embeddedkonsole |
32 | INCLUDEPATH += $(OPIEDIR)/include | 32 | INCLUDEPATH += $(OPIEDIR)/include |
33 | DEPENDPATH += $(OPIEDIR)/include | 33 | DEPENDPATH += $(OPIEDIR)/include |
34 | LIBS += -lqpe | 34 | LIBS += -lqpe |
35 | REQUIRES = embeddedkonsole | 35 | REQUIRES = embeddedkonsole |
36 | 36 | ||
37 | TRANSLATIONS = ../i18n/pt_BR/embeddedkonsole.ts | 37 | TRANSLATIONS = ../../../i18n/de/embeddedkonsole.ts \ |
38 | TRANSLATIONS += ../i18n/es/embeddedkonsole.ts | 38 | ../../../i18n/en/embeddedkonsole.ts \ |
39 | TRANSLATIONS += ../i18n/pt/embeddedkonsole.ts | 39 | ../../../i18n/es/embeddedkonsole.ts \ |
40 | TRANSLATIONS += ../i18n/de/embeddedkonsole.ts | 40 | ../../../i18n/fr/embeddedkonsole.ts \ |
41 | TRANSLATIONS += ../i18n/en/embeddedkonsole.ts | 41 | ../../../i18n/hu/embeddedkonsole.ts \ |
42 | TRANSLATIONS += ../i18n/hu/embeddedkonsole.ts | 42 | ../../../i18n/ja/embeddedkonsole.ts \ |
43 | TRANSLATIONS += ../i18n/fr/embeddedkonsole.ts | 43 | ../../../i18n/ko/embeddedkonsole.ts \ |
44 | TRANSLATIONS += ../i18n/pl/embeddedkonsole.ts | 44 | ../../../i18n/no/embeddedkonsole.ts \ |
45 | TRANSLATIONS += ../i18n/ja/embeddedkonsole.ts | 45 | ../../../i18n/pl/embeddedkonsole.ts \ |
46 | TRANSLATIONS += ../i18n/ko/embeddedkonsole.ts | 46 | ../../../i18n/pt/embeddedkonsole.ts \ |
47 | TRANSLATIONS += ../i18n/no/embeddedkonsole.ts | 47 | ../../../i18n/pt_BR/embeddedkonsole.ts \ |
48 | TRANSLATIONS += ../i18n/sl/embeddedkonsole.ts | 48 | ../../../i18n/sl/embeddedkonsole.ts \ |
49 | TRANSLATIONS += ../i18n/zh_CN/embeddedkonsole.ts | 49 | ../../../i18n/zh_CN/embeddedkonsole.ts \ |
50 | TRANSLATIONS += ../i18n/zh_TW/embeddedkonsole.ts | 50 | ../../../i18n/zh_TW/embeddedkonsole.ts |
diff --git a/core/apps/helpbrowser/helpbrowser.pro b/core/apps/helpbrowser/helpbrowser.pro index fe4553a..0da2ff2 100644 --- a/core/apps/helpbrowser/helpbrowser.pro +++ b/core/apps/helpbrowser/helpbrowser.pro | |||
@@ -1,25 +1,25 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = helpbrowser.h | 4 | HEADERS = helpbrowser.h |
5 | SOURCES = helpbrowser.cpp \ | 5 | SOURCES = helpbrowser.cpp \ |
6 | main.cpp | 6 | main.cpp |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(OPIEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | INTERFACES= | 10 | INTERFACES= |
11 | 11 | ||
12 | TRANSLATIONS = ../i18n/de/helpbrowser.ts | 12 | TRANSLATIONS = ../../../i18n/de/helpbrowser.pro.in.ts \ |
13 | TRANSLATIONS += ../i18n/es/helpbrowser.ts | 13 | ../../../i18n/en/helpbrowser.pro.in.ts \ |
14 | TRANSLATIONS += ../i18n/pt/helpbrowser.ts | 14 | ../../../i18n/es/helpbrowser.pro.in.ts \ |
15 | TRANSLATIONS += ../i18n/pt_BR/helpbrowser.ts | 15 | ../../../i18n/fr/helpbrowser.pro.in.ts \ |
16 | TRANSLATIONS += ../i18n/en/helpbrowser.ts | 16 | ../../../i18n/hu/helpbrowser.pro.in.ts \ |
17 | TRANSLATIONS += ../i18n/hu/helpbrowser.ts | 17 | ../../../i18n/ja/helpbrowser.pro.in.ts \ |
18 | TRANSLATIONS += ../i18n/ja/helpbrowser.ts | 18 | ../../../i18n/ko/helpbrowser.pro.in.ts \ |
19 | TRANSLATIONS += ../i18n/sl/helpbrowser.ts | 19 | ../../../i18n/no/helpbrowser.pro.in.ts \ |
20 | TRANSLATIONS += ../i18n/ko/helpbrowser.ts | 20 | ../../../i18n/pl/helpbrowser.pro.in.ts \ |
21 | TRANSLATIONS += ../i18n/no/helpbrowser.ts | 21 | ../../../i18n/pt/helpbrowser.pro.in.ts \ |
22 | TRANSLATIONS += ../i18n/pl/helpbrowser.ts | 22 | ../../../i18n/pt_BR/helpbrowser.pro.in.ts \ |
23 | TRANSLATIONS += ../i18n/fr/helpbrowser.ts | 23 | ../../../i18n/sl/helpbrowser.pro.in.ts \ |
24 | TRANSLATIONS += ../i18n/zh_CN/helpbrowser.ts | 24 | ../../../i18n/zh_CN/helpbrowser.pro.in.ts \ |
25 | TRANSLATIONS += ../i18n/zh_TW/helpbrowser.ts | 25 | ../../../i18n/zh_TW/helpbrowser.pro.in.ts |
diff --git a/core/apps/qcop/qcop.pro b/core/apps/qcop/qcop.pro index 63e8ace..36bc724 100644 --- a/core/apps/qcop/qcop.pro +++ b/core/apps/qcop/qcop.pro | |||
@@ -1,10 +1,25 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = | 4 | HEADERS = |
5 | SOURCES = main.cpp | 5 | SOURCES = main.cpp |
6 | INCLUDEPATH += $(OPIEDIR)/include | 6 | INCLUDEPATH += $(OPIEDIR)/include |
7 | DEPENDPATH+= $(OPIEDIR)/include | 7 | DEPENDPATH+= $(OPIEDIR)/include |
8 | LIBS += -lqpe | 8 | LIBS += -lqpe |
9 | INTERFACES= | 9 | INTERFACES= |
10 | TARGET = qcop | 10 | TARGET = qcop |
11 | |||
12 | TRANSLATIONS = ../../../i18n/de/qcop.ts \ | ||
13 | ../../../i18n/en/qcop.ts \ | ||
14 | ../../../i18n/es/qcop.ts \ | ||
15 | ../../../i18n/fr/qcop.ts \ | ||
16 | ../../../i18n/hu/qcop.ts \ | ||
17 | ../../../i18n/ja/qcop.ts \ | ||
18 | ../../../i18n/ko/qcop.ts \ | ||
19 | ../../../i18n/no/qcop.ts \ | ||
20 | ../../../i18n/pl/qcop.ts \ | ||
21 | ../../../i18n/pt/qcop.ts \ | ||
22 | ../../../i18n/pt_BR/qcop.ts \ | ||
23 | ../../../i18n/sl/qcop.ts \ | ||
24 | ../../../i18n/zh_CN/qcop.ts \ | ||
25 | ../../../i18n/zh_TW/qcop.ts | ||
diff --git a/core/apps/textedit/textedit.pro b/core/apps/textedit/textedit.pro index d01a9f4..484d0cd 100644 --- a/core/apps/textedit/textedit.pro +++ b/core/apps/textedit/textedit.pro | |||
@@ -1,25 +1,24 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | |||
4 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
5 | HEADERS = textedit.h fontDialog.h fileSaver.h filePermissions.h | 4 | HEADERS = textedit.h fontDialog.h fileSaver.h filePermissions.h |
6 | SOURCES = main.cpp textedit.cpp fontDialog.cpp fileSaver.cpp filePermissions.cpp | 5 | SOURCES = main.cpp textedit.cpp fontDialog.cpp fileSaver.cpp filePermissions.cpp |
7 | |||
8 | INCLUDEPATH += $(OPIEDIR)/include | 6 | INCLUDEPATH += $(OPIEDIR)/include |
9 | DEPENDPATH += $(OPIEDIR)/include | 7 | DEPENDPATH += $(OPIEDIR)/include |
10 | LIBS += -lqpe -lopie | 8 | LIBS += -lqpe -lopie |
11 | |||
12 | TARGET = textedit | 9 | TARGET = textedit |
13 | 10 | ||
14 | TRANSLATIONS += ../i18n/de/textedit.ts | 11 | TRANSLATIONS = ../../../i18n/de/textedit.ts \ |
15 | TRANSLATIONS += ../i18n/pt_BR/textedit.ts | 12 | ../../../i18n/en/textedit.ts \ |
16 | TRANSLATIONS += ../i18n/en/textedit.ts | 13 | ../../../i18n/es/textedit.ts \ |
17 | TRANSLATIONS += ../i18n/hu/textedit.ts | 14 | ../../../i18n/fr/textedit.ts \ |
18 | TRANSLATIONS += ../i18n/fr/textedit.ts | 15 | ../../../i18n/hu/textedit.ts \ |
19 | TRANSLATIONS += ../i18n/ja/textedit.ts | 16 | ../../../i18n/ja/textedit.ts \ |
20 | TRANSLATIONS += ../i18n/sl/textedit.ts | 17 | ../../../i18n/ko/textedit.ts \ |
21 | TRANSLATIONS += ../i18n/pl/textedit.ts | 18 | ../../../i18n/no/textedit.ts \ |
22 | TRANSLATIONS += ../i18n/ko/textedit.ts | 19 | ../../../i18n/pl/textedit.ts \ |
23 | TRANSLATIONS += ../i18n/no/textedit.ts | 20 | ../../../i18n/pt/textedit.ts \ |
24 | TRANSLATIONS += ../i18n/zh_CN/textedit.ts | 21 | ../../../i18n/pt_BR/textedit.ts \ |
25 | TRANSLATIONS += ../i18n/zh_TW/textedit.ts | 22 | ../../../i18n/sl/textedit.ts \ |
23 | ../../../i18n/zh_CN/textedit.ts \ | ||
24 | ../../../i18n/zh_TW/textedit.ts | ||
diff --git a/core/launcher/launcher.pro b/core/launcher/launcher.pro index 182cd1f..c053662 100644 --- a/core/launcher/launcher.pro +++ b/core/launcher/launcher.pro | |||
@@ -1,125 +1,117 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | |||
3 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
4 | |||
5 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
6 | |||
7 | HEADERS = background.h \ | 4 | HEADERS = background.h \ |
8 | desktop.h \ | 5 | desktop.h \ |
9 | qprocess.h \ | 6 | qprocess.h \ |
10 | mediummountgui.h \ | 7 | mediummountgui.h \ |
11 | info.h \ | 8 | info.h \ |
12 | appicons.h \ | 9 | appicons.h \ |
13 | taskbar.h \ | 10 | taskbar.h \ |
14 | sidething.h \ | 11 | sidething.h \ |
15 | mrulist.h \ | 12 | mrulist.h \ |
16 | stabmon.h \ | 13 | stabmon.h \ |
17 | inputmethods.h \ | 14 | inputmethods.h \ |
18 | systray.h \ | 15 | systray.h \ |
19 | wait.h \ | 16 | wait.h \ |
20 | shutdownimpl.h \ | 17 | shutdownimpl.h \ |
21 | launcher.h \ | 18 | launcher.h \ |
22 | launcherview.h \ | 19 | launcherview.h \ |
23 | $(OPIEDIR)/core/apps/calibrate/calibrate.h \ | 20 | $(OPIEDIR)/core/apps/calibrate/calibrate.h \ |
24 | startmenu.h \ | 21 | startmenu.h \ |
25 | transferserver.h \ | 22 | transferserver.h \ |
26 | qcopbridge.h \ | 23 | qcopbridge.h \ |
27 | packageslave.h \ | 24 | packageslave.h \ |
28 | irserver.h \ | 25 | irserver.h \ |
29 | $(OPIEDIR)/rsync/buf.h \ | 26 | $(OPIEDIR)/rsync/buf.h \ |
30 | $(OPIEDIR)/rsync/checksum.h \ | 27 | $(OPIEDIR)/rsync/checksum.h \ |
31 | $(OPIEDIR)/rsync/command.h \ | 28 | $(OPIEDIR)/rsync/command.h \ |
32 | $(OPIEDIR)/rsync/emit.h \ | 29 | $(OPIEDIR)/rsync/emit.h \ |
33 | $(OPIEDIR)/rsync/job.h \ | 30 | $(OPIEDIR)/rsync/job.h \ |
34 | $(OPIEDIR)/rsync/netint.h \ | 31 | $(OPIEDIR)/rsync/netint.h \ |
35 | $(OPIEDIR)/rsync/protocol.h \ | 32 | $(OPIEDIR)/rsync/protocol.h \ |
36 | $(OPIEDIR)/rsync/prototab.h \ | 33 | $(OPIEDIR)/rsync/prototab.h \ |
37 | $(OPIEDIR)/rsync/rsync.h \ | 34 | $(OPIEDIR)/rsync/rsync.h \ |
38 | $(OPIEDIR)/rsync/search.h \ | 35 | $(OPIEDIR)/rsync/search.h \ |
39 | $(OPIEDIR)/rsync/stream.h \ | 36 | $(OPIEDIR)/rsync/stream.h \ |
40 | $(OPIEDIR)/rsync/sumset.h \ | 37 | $(OPIEDIR)/rsync/sumset.h \ |
41 | $(OPIEDIR)/rsync/trace.h \ | 38 | $(OPIEDIR)/rsync/trace.h \ |
42 | $(OPIEDIR)/rsync/types.h \ | 39 | $(OPIEDIR)/rsync/types.h \ |
43 | $(OPIEDIR)/rsync/util.h \ | 40 | $(OPIEDIR)/rsync/util.h \ |
44 | $(OPIEDIR)/rsync/whole.h \ | 41 | $(OPIEDIR)/rsync/whole.h \ |
45 | $(OPIEDIR)/rsync/config_rsync.h \ | 42 | $(OPIEDIR)/rsync/config_rsync.h \ |
46 | $(OPIEDIR)/rsync/qrsync.h | 43 | $(OPIEDIR)/rsync/qrsync.h |
47 | # quicklauncher.h \ | 44 | # quicklauncher.h \ |
48 | |||
49 | SOURCES = background.cpp \ | 45 | SOURCES = background.cpp \ |
50 | desktop.cpp \ | 46 | desktop.cpp \ |
51 | mediummountgui.cpp \ | 47 | mediummountgui.cpp \ |
52 | qprocess.cpp qprocess_unix.cpp \ | 48 | qprocess.cpp qprocess_unix.cpp \ |
53 | info.cpp \ | 49 | info.cpp \ |
54 | appicons.cpp \ | 50 | appicons.cpp \ |
55 | taskbar.cpp \ | 51 | taskbar.cpp \ |
56 | sidething.cpp \ | 52 | sidething.cpp \ |
57 | mrulist.cpp \ | 53 | mrulist.cpp \ |
58 | stabmon.cpp \ | 54 | stabmon.cpp \ |
59 | inputmethods.cpp \ | 55 | inputmethods.cpp \ |
60 | systray.cpp \ | 56 | systray.cpp \ |
61 | wait.cpp \ | 57 | wait.cpp \ |
62 | shutdownimpl.cpp \ | 58 | shutdownimpl.cpp \ |
63 | launcher.cpp \ | 59 | launcher.cpp \ |
64 | launcherview.cpp \ | 60 | launcherview.cpp \ |
65 | $(OPIEDIR)/core/apps/calibrate/calibrate.cpp \ | 61 | $(OPIEDIR)/core/apps/calibrate/calibrate.cpp \ |
66 | transferserver.cpp \ | 62 | transferserver.cpp \ |
67 | packageslave.cpp \ | 63 | packageslave.cpp \ |
68 | irserver.cpp \ | 64 | irserver.cpp \ |
69 | qcopbridge.cpp \ | 65 | qcopbridge.cpp \ |
70 | startmenu.cpp \ | 66 | startmenu.cpp \ |
71 | main.cpp \ | 67 | main.cpp \ |
72 | $(OPIEDIR)/rsync/base64.c \ | 68 | $(OPIEDIR)/rsync/base64.c \ |
73 | $(OPIEDIR)/rsync/buf.c \ | 69 | $(OPIEDIR)/rsync/buf.c \ |
74 | $(OPIEDIR)/rsync/checksum.c \ | 70 | $(OPIEDIR)/rsync/checksum.c \ |
75 | $(OPIEDIR)/rsync/command.c \ | 71 | $(OPIEDIR)/rsync/command.c \ |
76 | $(OPIEDIR)/rsync/delta.c \ | 72 | $(OPIEDIR)/rsync/delta.c \ |
77 | $(OPIEDIR)/rsync/emit.c \ | 73 | $(OPIEDIR)/rsync/emit.c \ |
78 | $(OPIEDIR)/rsync/hex.c \ | 74 | $(OPIEDIR)/rsync/hex.c \ |
79 | $(OPIEDIR)/rsync/job.c \ | 75 | $(OPIEDIR)/rsync/job.c \ |
80 | $(OPIEDIR)/rsync/mdfour.c \ | 76 | $(OPIEDIR)/rsync/mdfour.c \ |
81 | $(OPIEDIR)/rsync/mksum.c \ | 77 | $(OPIEDIR)/rsync/mksum.c \ |
82 | $(OPIEDIR)/rsync/msg.c \ | 78 | $(OPIEDIR)/rsync/msg.c \ |
83 | $(OPIEDIR)/rsync/netint.c \ | 79 | $(OPIEDIR)/rsync/netint.c \ |
84 | $(OPIEDIR)/rsync/patch.c \ | 80 | $(OPIEDIR)/rsync/patch.c \ |
85 | $(OPIEDIR)/rsync/prototab.c \ | 81 | $(OPIEDIR)/rsync/prototab.c \ |
86 | $(OPIEDIR)/rsync/readsums.c \ | 82 | $(OPIEDIR)/rsync/readsums.c \ |
87 | $(OPIEDIR)/rsync/scoop.c \ | 83 | $(OPIEDIR)/rsync/scoop.c \ |
88 | $(OPIEDIR)/rsync/search.c \ | 84 | $(OPIEDIR)/rsync/search.c \ |
89 | $(OPIEDIR)/rsync/stats.c \ | 85 | $(OPIEDIR)/rsync/stats.c \ |
90 | $(OPIEDIR)/rsync/stream.c \ | 86 | $(OPIEDIR)/rsync/stream.c \ |
91 | $(OPIEDIR)/rsync/sumset.c \ | 87 | $(OPIEDIR)/rsync/sumset.c \ |
92 | $(OPIEDIR)/rsync/trace.c \ | 88 | $(OPIEDIR)/rsync/trace.c \ |
93 | $(OPIEDIR)/rsync/tube.c \ | 89 | $(OPIEDIR)/rsync/tube.c \ |
94 | $(OPIEDIR)/rsync/util.c \ | 90 | $(OPIEDIR)/rsync/util.c \ |
95 | $(OPIEDIR)/rsync/version.c \ | 91 | $(OPIEDIR)/rsync/version.c \ |
96 | $(OPIEDIR)/rsync/whole.c \ | 92 | $(OPIEDIR)/rsync/whole.c \ |
97 | $(OPIEDIR)/rsync/qrsync.cpp | 93 | $(OPIEDIR)/rsync/qrsync.cpp |
98 | |||
99 | INTERFACES= shutdown.ui syncdialog.ui | 94 | INTERFACES= shutdown.ui syncdialog.ui |
100 | |||
101 | INCLUDEPATH += $(OPIEDIR)/include | 95 | INCLUDEPATH += $(OPIEDIR)/include |
102 | DEPENDPATH+= $(OPIEDIR)/include . | 96 | DEPENDPATH+= $(OPIEDIR)/include . |
103 | |||
104 | INCLUDEPATH += $(OPIEDIR)/core/apps/calibrate | 97 | INCLUDEPATH += $(OPIEDIR)/core/apps/calibrate |
105 | DEPENDPATH+= $(OPIEDIR)/core/apps/calibrate | 98 | DEPENDPATH+= $(OPIEDIR)/core/apps/calibrate |
106 | |||
107 | INCLUDEPATH += $(OPIEDIR)/rsync | 99 | INCLUDEPATH += $(OPIEDIR)/rsync |
108 | DEPENDPATH+= $(OPIEDIR)/rsync | 100 | DEPENDPATH+= $(OPIEDIR)/rsync |
109 | |||
110 | TARGET = qpe | 101 | TARGET = qpe |
111 | |||
112 | LIBS += -lqpe -lcrypt -lopie | 102 | LIBS += -lqpe -lcrypt -lopie |
113 | 103 | ||
114 | TRANSLATIONS = ../i18n/de/qpe.ts | 104 | TRANSLATIONS = ../../i18n/de/qpe.ts \ |
115 | TRANSLATIONS += ../i18n/es/qpe.ts | 105 | ../../i18n/en/qpe.ts \ |
116 | TRANSLATIONS += ../i18n/pt/qpe.ts | 106 | ../../i18n/es/qpe.ts \ |
117 | TRANSLATIONS += ../i18n/pt_BR/qpe.ts | 107 | ../../i18n/fr/qpe.ts \ |
118 | TRANSLATIONS += ../i18n/en/qpe.ts | 108 | ../../i18n/hu/qpe.ts \ |
119 | TRANSLATIONS += ../i18n/hu/qpe.ts | 109 | ../../i18n/ja/qpe.ts \ |
120 | TRANSLATIONS += ../i18n/ja/qpe.ts | 110 | ../../i18n/ko/qpe.ts \ |
121 | TRANSLATIONS += ../i18n/fr/qpe.ts | 111 | ../../i18n/no/qpe.ts \ |
122 | TRANSLATIONS += ../i18n/ko/qpe.ts | 112 | ../../i18n/pl/qpe.ts \ |
123 | TRANSLATIONS += ../i18n/no/qpe.ts | 113 | ../../i18n/pt/qpe.ts \ |
124 | TRANSLATIONS += ../i18n/zh_CN/qpe.ts | 114 | ../../i18n/pt_BR/qpe.ts \ |
125 | TRANSLATIONS += ../i18n/zh_TW/qpe.ts | 115 | ../../i18n/sl/qpe.ts \ |
116 | ../../i18n/zh_CN/qpe.ts \ | ||
117 | ../../i18n/zh_TW/qpe.ts | ||
diff --git a/core/multimedia/opieplayer/libflash/libflash.pro b/core/multimedia/opieplayer/libflash/libflash.pro index bf97fbf..f3d452b 100644 --- a/core/multimedia/opieplayer/libflash/libflash.pro +++ b/core/multimedia/opieplayer/libflash/libflash.pro | |||
@@ -1,15 +1,29 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = libflashplugin.h libflashpluginimpl.h | 3 | HEADERS = libflashplugin.h libflashpluginimpl.h |
4 | SOURCES = libflashplugin.cpp libflashpluginimpl.cpp \ | 4 | SOURCES = libflashplugin.cpp libflashpluginimpl.cpp \ |
5 | adpcm.cc character.cc flash.cc graphic16.cc matrix.cc script.cc \ | 5 | adpcm.cc character.cc flash.cc graphic16.cc matrix.cc script.cc \ |
6 | sprite.cc bitmap.cc cxform.cc font.cc graphic24.cc movie.cc \ | 6 | sprite.cc bitmap.cc cxform.cc font.cc graphic24.cc movie.cc \ |
7 | shape.cc sqrt.cc button.cc displaylist.cc graphic.cc graphic32.cc \ | 7 | shape.cc sqrt.cc button.cc displaylist.cc graphic.cc graphic32.cc \ |
8 | program.cc sound.cc text.cc | 8 | program.cc sound.cc text.cc |
9 | TARGET = flashplugin | 9 | TARGET = flashplugin |
10 | DESTDIR = ../../plugins/codecs | 10 | DESTDIR = ../../plugins/codecs |
11 | INCLUDEPATH += $(OPIEDIR)/include .. | 11 | INCLUDEPATH += $(OPIEDIR)/include .. |
12 | DEPENDPATH += ../$(OPIEDIR)/include .. | 12 | DEPENDPATH += ../$(OPIEDIR)/include .. |
13 | LIBS += -lqpe | 13 | LIBS += -lqpe |
14 | VERSION = 1.0.0 | 14 | VERSION = 1.0.0 |
15 | 15 | ||
16 | TRANSLATIONS = ../../../../i18n/de/libflashplugin.ts \ | ||
17 | ../../../../i18n/en/libflashplugin.ts \ | ||
18 | ../../../../i18n/es/libflashplugin.ts \ | ||
19 | ../../../../i18n/fr/libflashplugin.ts \ | ||
20 | ../../../../i18n/hu/libflashplugin.ts \ | ||
21 | ../../../../i18n/ja/libflashplugin.ts \ | ||
22 | ../../../../i18n/ko/libflashplugin.ts \ | ||
23 | ../../../../i18n/no/libflashplugin.ts \ | ||
24 | ../../../../i18n/pl/libflashplugin.ts \ | ||
25 | ../../../../i18n/pt/libflashplugin.ts \ | ||
26 | ../../../../i18n/pt_BR/libflashplugin.ts \ | ||
27 | ../../../../i18n/sl/libflashplugin.ts \ | ||
28 | ../../../../i18n/zh_CN/libflashplugin.ts \ | ||
29 | ../../../../i18n/zh_TW/libflashplugin.ts | ||
diff --git a/core/multimedia/opieplayer/libmad/libmad.pro b/core/multimedia/opieplayer/libmad/libmad.pro index d55cf8f..3787464 100644 --- a/core/multimedia/opieplayer/libmad/libmad.pro +++ b/core/multimedia/opieplayer/libmad/libmad.pro | |||
@@ -1,27 +1,27 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = libmad_version.h fixed.h bit.h timer.h stream.h frame.h synth.h decoder.h \ | 3 | HEADERS = libmad_version.h fixed.h bit.h timer.h stream.h frame.h synth.h decoder.h \ |
4 | layer12.h layer3.h huffman.h libmad_global.h mad.h libmadplugin.h libmadpluginimpl.h | 4 | layer12.h layer3.h huffman.h libmad_global.h mad.h libmadplugin.h libmadpluginimpl.h |
5 | SOURCES = version.c fixed.c bit.c timer.c stream.c frame.c synth.c decoder.c \ | 5 | SOURCES = version.c fixed.c bit.c timer.c stream.c frame.c synth.c decoder.c \ |
6 | layer12.c layer3.c huffman.c libmadplugin.cpp libmadpluginimpl.cpp | 6 | layer12.c layer3.c huffman.c libmadplugin.cpp libmadpluginimpl.cpp |
7 | TARGET = madplugin | 7 | TARGET = madplugin |
8 | DESTDIR = $(OPIEDIR)/plugins/codecs | 8 | DESTDIR = $(OPIEDIR)/plugins/codecs |
9 | INCLUDEPATH += $(OPIEDIR)/include .. | 9 | INCLUDEPATH += $(OPIEDIR)/include .. |
10 | DEPENDPATH += ../$(OPIEDIR)/include .. | 10 | DEPENDPATH += ../$(OPIEDIR)/include .. |
11 | LIBS += -lqpe -lm | 11 | LIBS += -lqpe -lm |
12 | VERSION = 1.0.0 | 12 | VERSION = 1.0.0 |
13 | 13 | ||
14 | TRANSLATIONS = ../../i18n/pt_BR/libmadplugin.ts | 14 | TRANSLATIONS = ../../../../i18n/de/libmadplugin.ts \ |
15 | TRANSLATIONS += ../../i18n/es/libmadplugin.ts | 15 | ../../../../i18n/en/libmadplugin.ts \ |
16 | TRANSLATIONS += ../../i18n/pt/libmadplugin.ts | 16 | ../../../../i18n/es/libmadplugin.ts \ |
17 | TRANSLATIONS += ../../i18n/de/libmadplugin.ts | 17 | ../../../../i18n/fr/libmadplugin.ts \ |
18 | TRANSLATIONS += ../../i18n/en/libmadplugin.ts | 18 | ../../../../i18n/hu/libmadplugin.ts \ |
19 | TRANSLATIONS += ../../i18n/hu/libmadplugin.ts | 19 | ../../../../i18n/ja/libmadplugin.ts \ |
20 | TRANSLATIONS += ../../i18n/sl/libmadplugin.ts | 20 | ../../../../i18n/ko/libmadplugin.ts \ |
21 | TRANSLATIONS += ../../i18n/ja/libmadplugin.ts | 21 | ../../../../i18n/no/libmadplugin.ts \ |
22 | TRANSLATIONS += ../../i18n/pl/libmadplugin.ts | 22 | ../../../../i18n/pl/libmadplugin.ts \ |
23 | TRANSLATIONS += ../../i18n/ko/libmadplugin.ts | 23 | ../../../../i18n/pt/libmadplugin.ts \ |
24 | TRANSLATIONS += ../../i18n/no/libmadplugin.ts | 24 | ../../../../i18n/pt_BR/libmadplugin.ts \ |
25 | TRANSLATIONS += ../../i18n/zh_CN/libmadplugin.ts | 25 | ../../../../i18n/sl/libmadplugin.ts \ |
26 | TRANSLATIONS += ../../i18n/zh_TW/libmadplugin.ts | 26 | ../../../../i18n/zh_CN/libmadplugin.ts \ |
27 | TRANSLATIONS += ../../i18n/fr/libmadplugin.ts | 27 | ../../../../i18n/zh_TW/libmadplugin.ts |
diff --git a/core/multimedia/opieplayer/libmpeg3/libmpeg3.pro b/core/multimedia/opieplayer/libmpeg3/libmpeg3.pro index f5e5954..a465f8a 100644 --- a/core/multimedia/opieplayer/libmpeg3/libmpeg3.pro +++ b/core/multimedia/opieplayer/libmpeg3/libmpeg3.pro | |||
@@ -1,43 +1,58 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = libmpeg3plugin.h libmpeg3pluginimpl.h | 3 | HEADERS = libmpeg3plugin.h libmpeg3pluginimpl.h |
4 | SOURCES = libmpeg3plugin.cpp libmpeg3pluginimpl.cpp \ | 4 | SOURCES = libmpeg3plugin.cpp libmpeg3pluginimpl.cpp \ |
5 | bitstream.c \ | 5 | bitstream.c \ |
6 | libmpeg3.c \ | 6 | libmpeg3.c \ |
7 | mpeg3atrack.c \ | 7 | mpeg3atrack.c \ |
8 | mpeg3css.c \ | 8 | mpeg3css.c \ |
9 | mpeg3demux.c \ | 9 | mpeg3demux.c \ |
10 | mpeg3io.c \ | 10 | mpeg3io.c \ |
11 | mpeg3title.c \ | 11 | mpeg3title.c \ |
12 | mpeg3vtrack.c \ | 12 | mpeg3vtrack.c \ |
13 | audio/ac3.c \ | 13 | audio/ac3.c \ |
14 | audio/bit_allocation.c \ | 14 | audio/bit_allocation.c \ |
15 | audio/dct.c \ | 15 | audio/dct.c \ |
16 | audio/exponents.c \ | 16 | audio/exponents.c \ |
17 | audio/header.c \ | 17 | audio/header.c \ |
18 | audio/layer2.c \ | 18 | audio/layer2.c \ |
19 | audio/layer3.c \ | 19 | audio/layer3.c \ |
20 | audio/mantissa.c \ | 20 | audio/mantissa.c \ |
21 | audio/mpeg3audio.c \ | 21 | audio/mpeg3audio.c \ |
22 | audio/pcm.c \ | 22 | audio/pcm.c \ |
23 | audio/synthesizers.c \ | 23 | audio/synthesizers.c \ |
24 | audio/tables.c \ | 24 | audio/tables.c \ |
25 | video/getpicture.c \ | 25 | video/getpicture.c \ |
26 | video/headers.c \ | 26 | video/headers.c \ |
27 | video/idct.c \ | 27 | video/idct.c \ |
28 | video/macroblocks.c \ | 28 | video/macroblocks.c \ |
29 | video/mmxtest.c \ | 29 | video/mmxtest.c \ |
30 | video/motion.c \ | 30 | video/motion.c \ |
31 | video/mpeg3video.c \ | 31 | video/mpeg3video.c \ |
32 | video/output.c \ | 32 | video/output.c \ |
33 | video/reconstruct.c \ | 33 | video/reconstruct.c \ |
34 | video/seek.c \ | 34 | video/seek.c \ |
35 | video/slice.c \ | 35 | video/slice.c \ |
36 | video/vlc.c | 36 | video/vlc.c |
37 | TARGET = mpeg3plugin | 37 | TARGET = mpeg3plugin |
38 | TMAKE_CC=g++ | 38 | TMAKE_CC=g++ |
39 | DESTDIR = $(OPIEDIR)/plugins/codecs | 39 | DESTDIR = $(OPIEDIR)/plugins/codecs |
40 | INCLUDEPATH += $(OPIEDIR)/include .. | 40 | INCLUDEPATH += $(OPIEDIR)/include .. |
41 | DEPENDPATH += ../$(OPIEDIR)/include .. | 41 | DEPENDPATH += ../$(OPIEDIR)/include .. |
42 | LIBS += -lqpe -lpthread -lm | 42 | LIBS += -lqpe -lpthread -lm |
43 | VERSION = 1.0.0 | 43 | VERSION = 1.0.0 |
44 | |||
45 | TRANSLATIONS = ../../../../i18n/de/libmpeg3plugin.ts \ | ||
46 | ../../../../i18n/en/libmpeg3plugin.ts \ | ||
47 | ../../../../i18n/es/libmpeg3plugin.ts \ | ||
48 | ../../../../i18n/fr/libmpeg3plugin.ts \ | ||
49 | ../../../../i18n/hu/libmpeg3plugin.ts \ | ||
50 | ../../../../i18n/ja/libmpeg3plugin.ts \ | ||
51 | ../../../../i18n/ko/libmpeg3plugin.ts \ | ||
52 | ../../../../i18n/no/libmpeg3plugin.ts \ | ||
53 | ../../../../i18n/pl/libmpeg3plugin.ts \ | ||
54 | ../../../../i18n/pt/libmpeg3plugin.ts \ | ||
55 | ../../../../i18n/pt_BR/libmpeg3plugin.ts \ | ||
56 | ../../../../i18n/sl/libmpeg3plugin.ts \ | ||
57 | ../../../../i18n/zh_CN/libmpeg3plugin.ts \ | ||
58 | ../../../../i18n/zh_TW/libmpeg3plugin.ts | ||
diff --git a/core/multimedia/opieplayer/opieplayer.pro b/core/multimedia/opieplayer/opieplayer.pro index 6409bab..e111717 100644 --- a/core/multimedia/opieplayer/opieplayer.pro +++ b/core/multimedia/opieplayer/opieplayer.pro | |||
@@ -1,24 +1,31 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | #release | 3 | #release |
4 | DESTDIR = $(OPIEDIR)/bin | 4 | DESTDIR = $(OPIEDIR)/bin |
5 | HEADERS = loopcontrol.h mediaplayerplugininterface.h playlistselection.h mediaplayerstate.h \ | 5 | HEADERS = loopcontrol.h mediaplayerplugininterface.h playlistselection.h mediaplayerstate.h \ |
6 | videowidget.h audiowidget.h playlistwidget.h mediaplayer.h audiodevice.h inputDialog.h | 6 | videowidget.h audiowidget.h playlistwidget.h mediaplayer.h audiodevice.h inputDialog.h |
7 | SOURCES = main.cpp \ | 7 | SOURCES = main.cpp \ |
8 | loopcontrol.cpp playlistselection.cpp mediaplayerstate.cpp \ | 8 | loopcontrol.cpp playlistselection.cpp mediaplayerstate.cpp \ |
9 | videowidget.cpp audiowidget.cpp playlistwidget.cpp mediaplayer.cpp audiodevice.cpp inputDialog.cpp | 9 | videowidget.cpp audiowidget.cpp playlistwidget.cpp mediaplayer.cpp audiodevice.cpp inputDialog.cpp |
10 | TARGET = opieplayer | 10 | TARGET = opieplayer |
11 | INCLUDEPATH += $(OPIEDIR)/include | 11 | INCLUDEPATH += $(OPIEDIR)/include |
12 | DEPENDPATH += $(OPIEDIR)/include | 12 | DEPENDPATH += $(OPIEDIR)/include |
13 | LIBS += -lqpe -lpthread -lopie | 13 | LIBS += -lqpe -lpthread -lopie |
14 | 14 | ||
15 | # INTERFACES = | ||
16 | # INCLUDEPATH += $(OPIEDIR)/include | ||
17 | # CONFIG+=static | ||
18 | # TMAKE_CXXFLAGS += -DQPIM_STANDALONE | ||
19 | # LIBS += libmpeg3/libmpeg3.a -lpthread | ||
20 | # LIBS += $(OPIEDIR)/plugins/codecs/liblibmadplugin.so | ||
21 | |||
22 | INCLUDEPATH += $(OPIEDIR)/include | 15 | INCLUDEPATH += $(OPIEDIR)/include |
23 | DEPENDPATH += $(OPIEDIR)/include | 16 | DEPENDPATH += $(OPIEDIR)/include |
24 | 17 | ||
18 | TRANSLATIONS = ../../../i18n/de/opieplayer.ts \ | ||
19 | ../../../i18n/en/opieplayer.ts \ | ||
20 | ../../../i18n/es/opieplayer.ts \ | ||
21 | ../../../i18n/fr/opieplayer.ts \ | ||
22 | ../../../i18n/hu/opieplayer.ts \ | ||
23 | ../../../i18n/ja/opieplayer.ts \ | ||
24 | ../../../i18n/ko/opieplayer.ts \ | ||
25 | ../../../i18n/no/opieplayer.ts \ | ||
26 | ../../../i18n/pl/opieplayer.ts \ | ||
27 | ../../../i18n/pt/opieplayer.ts \ | ||
28 | ../../../i18n/pt_BR/opieplayer.ts \ | ||
29 | ../../../i18n/sl/opieplayer.ts \ | ||
30 | ../../../i18n/zh_CN/opieplayer.ts \ | ||
31 | ../../../i18n/zh_TW/opieplayer.ts | ||
diff --git a/core/multimedia/opieplayer/wavplugin/wavplugin.pro b/core/multimedia/opieplayer/wavplugin/wavplugin.pro index f0834de..5b5a15b 100644 --- a/core/multimedia/opieplayer/wavplugin/wavplugin.pro +++ b/core/multimedia/opieplayer/wavplugin/wavplugin.pro | |||
@@ -1,10 +1,25 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = wavplugin.h wavpluginimpl.h | 3 | HEADERS = wavplugin.h wavpluginimpl.h |
4 | SOURCES = wavplugin.cpp wavpluginimpl.cpp | 4 | SOURCES = wavplugin.cpp wavpluginimpl.cpp |
5 | TARGET = wavplugin | 5 | TARGET = wavplugin |
6 | DESTDIR = $(OPIEDIR)/plugins/codecs | 6 | DESTDIR = $(OPIEDIR)/plugins/codecs |
7 | INCLUDEPATH += $(OPIEDIR)/include .. | 7 | INCLUDEPATH += $(OPIEDIR)/include .. |
8 | DEPENDPATH += ../$(OPIEDIR)/include .. | 8 | DEPENDPATH += ../$(OPIEDIR)/include .. |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | |||
12 | TRANSLATIONS = ../../../../i18n/de/libwavplugin.ts \ | ||
13 | ../../../../i18n/en/libwavplugin.ts \ | ||
14 | ../../../../i18n/es/libwavplugin.ts \ | ||
15 | ../../../../i18n/fr/libwavplugin.ts \ | ||
16 | ../../../../i18n/hu/libwavplugin.ts \ | ||
17 | ../../../../i18n/ja/libwavplugin.ts \ | ||
18 | ../../../../i18n/ko/libwavplugin.ts \ | ||
19 | ../../../../i18n/no/libwavplugin.ts \ | ||
20 | ../../../../i18n/pl/libwavplugin.ts \ | ||
21 | ../../../../i18n/pt/libwavplugin.ts \ | ||
22 | ../../../../i18n/pt_BR/libwavplugin.ts \ | ||
23 | ../../../../i18n/sl/libwavplugin.ts \ | ||
24 | ../../../../i18n/zh_CN/libwavplugin.ts \ | ||
25 | ../../../../i18n/zh_TW/libwavplugin.ts | ||
diff --git a/core/pim/addressbook/addressbook.pro b/core/pim/addressbook/addressbook.pro index 99a0b23..15ae498 100644 --- a/core/pim/addressbook/addressbook.pro +++ b/core/pim/addressbook/addressbook.pro | |||
@@ -1,37 +1,36 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS= addressbook.h \ | 4 | HEADERS= addressbook.h \ |
5 | contacteditor.h \ | 5 | contacteditor.h \ |
6 | ablabel.h \ | 6 | ablabel.h \ |
7 | abtable.h \ | 7 | abtable.h \ |
8 | addresssettings.h \ | 8 | addresssettings.h \ |
9 | picker.h | 9 | picker.h |
10 | SOURCES= main.cpp \ | 10 | SOURCES= main.cpp \ |
11 | addressbook.cpp \ | 11 | addressbook.cpp \ |
12 | contacteditor.cpp \ | 12 | contacteditor.cpp \ |
13 | ablabel.cpp \ | 13 | ablabel.cpp \ |
14 | abtable.cpp \ | 14 | abtable.cpp \ |
15 | addresssettings.cpp \ | 15 | addresssettings.cpp \ |
16 | picker.cpp | 16 | picker.cpp |
17 | INTERFACES= addresssettingsbase.ui | 17 | INTERFACES= addresssettingsbase.ui |
18 | |||
19 | TARGET = addressbook | 18 | TARGET = addressbook |
20 | INCLUDEPATH += $(OPIEDIR)/include | 19 | INCLUDEPATH += $(OPIEDIR)/include |
21 | DEPENDPATH+= $(OPIEDIR)/include | 20 | DEPENDPATH+= $(OPIEDIR)/include |
22 | LIBS += -lqpe -lopie | 21 | LIBS += -lqpe -lopie |
23 | 22 | ||
24 | TRANSLATIONS = ../../i18n/pt_BR/addressbook.ts | 23 | TRANSLATIONS = ../../../i18n/de/addressbook.ts \ |
25 | TRANSLATIONS += ../../i18n/es/addressbook.ts | 24 | ../../../i18n/en/addressbook.ts \ |
26 | TRANSLATIONS += ../../i18n/pt/addressbook.ts | 25 | ../../../i18n/es/addressbook.ts \ |
27 | TRANSLATIONS += ../../i18n/de/addressbook.ts | 26 | ../../../i18n/fr/addressbook.ts \ |
28 | TRANSLATIONS += ../../i18n/en/addressbook.ts | 27 | ../../../i18n/hu/addressbook.ts \ |
29 | TRANSLATIONS += ../../i18n/hu/addressbook.ts | 28 | ../../../i18n/ja/addressbook.ts \ |
30 | TRANSLATIONS += ../../i18n/sl/addressbook.ts | 29 | ../../../i18n/ko/addressbook.ts \ |
31 | TRANSLATIONS += ../../i18n/ja/addressbook.ts | 30 | ../../../i18n/no/addressbook.ts \ |
32 | TRANSLATIONS += ../../i18n/ko/addressbook.ts | 31 | ../../../i18n/pl/addressbook.ts \ |
33 | TRANSLATIONS += ../../i18n/pl/addressbook.ts | 32 | ../../../i18n/pt/addressbook.ts \ |
34 | TRANSLATIONS += ../../i18n/no/addressbook.ts | 33 | ../../../i18n/pt_BR/addressbook.ts \ |
35 | TRANSLATIONS += ../../i18n/zh_CN/addressbook.ts | 34 | ../../../i18n/sl/addressbook.ts \ |
36 | TRANSLATIONS += ../../i18n/zh_TW/addressbook.ts | 35 | ../../../i18n/zh_CN/addressbook.ts \ |
37 | TRANSLATIONS += ../../i18n/fr/addressbook.ts | 36 | ../../../i18n/zh_TW/addressbook.ts |
diff --git a/core/pim/datebook/datebook.pro b/core/pim/datebook/datebook.pro index 088ae3e..3abe9aa 100644 --- a/core/pim/datebook/datebook.pro +++ b/core/pim/datebook/datebook.pro | |||
@@ -1,60 +1,55 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | |||
5 | HEADERS= datebookday.h \ | 4 | HEADERS= datebookday.h \ |
6 | datebook.h \ | 5 | datebook.h \ |
7 | dateentryimpl.h \ | 6 | dateentryimpl.h \ |
8 | datebookdayheaderimpl.h \ | 7 | datebookdayheaderimpl.h \ |
9 | datebooksettings.h \ | 8 | datebooksettings.h \ |
10 | datebookweek.h \ | 9 | datebookweek.h \ |
11 | datebookweeklst.h \ | 10 | datebookweeklst.h \ |
12 | datebookweekheaderimpl.h \ | 11 | datebookweekheaderimpl.h \ |
13 | repeatentry.h \ | 12 | repeatentry.h \ |
14 | timepicker.h \ | 13 | timepicker.h \ |
15 | noteentryimpl.h \ | 14 | noteentryimpl.h \ |
16 | onoteedit.h | 15 | onoteedit.h |
17 | |||
18 | SOURCES= main.cpp \ | 16 | SOURCES= main.cpp \ |
19 | datebookday.cpp \ | 17 | datebookday.cpp \ |
20 | datebook.cpp \ | 18 | datebook.cpp \ |
21 | dateentryimpl.cpp \ | 19 | dateentryimpl.cpp \ |
22 | datebookdayheaderimpl.cpp \ | 20 | datebookdayheaderimpl.cpp \ |
23 | datebooksettings.cpp \ | 21 | datebooksettings.cpp \ |
24 | datebookweek.cpp \ | 22 | datebookweek.cpp \ |
25 | datebookweeklst.cpp \ | 23 | datebookweeklst.cpp \ |
26 | datebookweekheaderimpl.cpp \ | 24 | datebookweekheaderimpl.cpp \ |
27 | repeatentry.cpp \ | 25 | repeatentry.cpp \ |
28 | timepicker.cpp \ | 26 | timepicker.cpp \ |
29 | noteentryimpl.cpp \ | 27 | noteentryimpl.cpp \ |
30 | onoteedit.cpp | 28 | onoteedit.cpp |
31 | |||
32 | INTERFACES= dateentry.ui \ | 29 | INTERFACES= dateentry.ui \ |
33 | datebookdayheader.ui \ | 30 | datebookdayheader.ui \ |
34 | datebookweekheader.ui \ | 31 | datebookweekheader.ui \ |
35 | datebookweeklstheader.ui \ | 32 | datebookweeklstheader.ui \ |
36 | datebookweeklstdayhdr.ui \ | 33 | datebookweeklstdayhdr.ui \ |
37 | repeatentrybase.ui \ | 34 | repeatentrybase.ui \ |
38 | datebooksettingsbase.ui \ | 35 | datebooksettingsbase.ui \ |
39 | noteentry.ui | 36 | noteentry.ui |
40 | |||
41 | INCLUDEPATH += $(OPIEDIR)/include | 37 | INCLUDEPATH += $(OPIEDIR)/include |
42 | DEPENDPATH+= $(OPIEDIR)/include | 38 | DEPENDPATH+= $(OPIEDIR)/include |
43 | LIBS += -lqpe -lopie | 39 | LIBS += -lqpe -lopie |
44 | |||
45 | TARGET = datebook | 40 | TARGET = datebook |
46 | 41 | ||
47 | TRANSLATIONS = ../i18n/pt_BR/datebook.ts | 42 | TRANSLATIONS = ../../../i18n/de/datebook.ts \ |
48 | TRANSLATIONS += ../i18n/pt/datebook.ts | 43 | ../../../i18n/en/datebook.ts \ |
49 | TRANSLATIONS += ../i18n/de/datebook.ts | 44 | ../../../i18n/es/datebook.ts \ |
50 | TRANSLATIONS += ../i18n/en/datebook.ts | 45 | ../../../i18n/fr/datebook.ts \ |
51 | TRANSLATIONS += ../i18n/hu/datebook.ts | 46 | ../../../i18n/hu/datebook.ts \ |
52 | TRANSLATIONS += ../i18n/pl/datebook.ts | 47 | ../../../i18n/ja/datebook.ts \ |
53 | TRANSLATIONS += ../i18n/sl/datebook.ts | 48 | ../../../i18n/ko/datebook.ts \ |
54 | TRANSLATIONS += ../i18n/ja/datebook.ts | 49 | ../../../i18n/no/datebook.ts \ |
55 | TRANSLATIONS += ../i18n/ko/datebook.ts | 50 | ../../../i18n/pl/datebook.ts \ |
56 | TRANSLATIONS += ../i18n/no/datebook.ts | 51 | ../../../i18n/pt/datebook.ts \ |
57 | TRANSLATIONS += ../i18n/zh_CN/datebook.ts | 52 | ../../../i18n/pt_BR/datebook.ts \ |
58 | TRANSLATIONS += ../i18n/zh_TW/datebook.ts | 53 | ../../../i18n/sl/datebook.ts \ |
59 | TRANSLATIONS += ../i18n/fr/datebook.ts | 54 | ../../../i18n/zh_CN/datebook.ts \ |
60 | TRANSLATIONS += ../i18n/es/datebook.ts | 55 | ../../../i18n/zh_TW/datebook.ts |
diff --git a/core/pim/today/today.pro b/core/pim/today/today.pro index d75fdb5..171614b 100644 --- a/core/pim/today/today.pro +++ b/core/pim/today/today.pro | |||
@@ -1,26 +1,26 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | #CONFIG = qt warn_on debug | 2 | #CONFIG = qt warn_on debug |
3 | CONFIG = qt warn_on release | 3 | CONFIG = qt warn_on release |
4 | HEADERS = today.h todaybase.h todayconfig.h | 4 | HEADERS = today.h todaybase.h todayconfig.h |
5 | SOURCES = main.cpp today.cpp todaybase.cpp todayconfig.cpp | 5 | SOURCES = main.cpp today.cpp todaybase.cpp todayconfig.cpp |
6 | |||
7 | INCLUDEPATH+= $(OPIEDIR)/include | 6 | INCLUDEPATH+= $(OPIEDIR)/include |
8 | DEPENDPATH+= $(OPIEDIR)/include | 7 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe -lopie | 8 | LIBS += -lqpe -lopie |
10 | INTERFACES= | 9 | INTERFACES= |
11 | TARGET = today | 10 | TARGET = today |
12 | DESTDIR = $(OPIEDIR)/bin | 11 | DESTDIR = $(OPIEDIR)/bin |
13 | TRANSLATIONS = ../i18n/pt_BR/today.ts | 12 | |
14 | TRANSLATIONS += ../i18n/pt/today.ts | 13 | TRANSLATIONS = ../../../i18n/de/today.ts \ |
15 | TRANSLATIONS += ../i18n/de/today.ts | 14 | ../../../i18n/en/today.ts \ |
16 | TRANSLATIONS += ../i18n/en/today.ts | 15 | ../../../i18n/es/today.ts \ |
17 | TRANSLATIONS += ../i18n/hu/today.ts | 16 | ../../../i18n/fr/today.ts \ |
18 | TRANSLATIONS += ../i18n/sl/today.ts | 17 | ../../../i18n/hu/today.ts \ |
19 | TRANSLATIONS += ../i18n/ja/today.ts | 18 | ../../../i18n/ja/today.ts \ |
20 | TRANSLATIONS += ../i18n/ko/today.ts | 19 | ../../../i18n/ko/today.ts \ |
21 | TRANSLATIONS += ../i18n/no/today.ts | 20 | ../../../i18n/no/today.ts \ |
22 | TRANSLATIONS += ../i18n/zh_CN/today.ts | 21 | ../../../i18n/pl/today.ts \ |
23 | TRANSLATIONS += ../i18n/zh_TW/today.ts | 22 | ../../../i18n/pt/today.ts \ |
24 | TRANSLATIONS += ../i18n/fr/today.ts | 23 | ../../../i18n/pt_BR/today.ts \ |
25 | TRANSLATIONS += ../i18n/pl/today.ts | 24 | ../../../i18n/sl/today.ts \ |
26 | TRANSLATIONS += ../i18n/es/today.ts | 25 | ../../../i18n/zh_CN/today.ts \ |
26 | ../../../i18n/zh_TW/today.ts | ||
diff --git a/core/pim/todo/todo.pro b/core/pim/todo/todo.pro index 1e4492c..fd682f8 100644 --- a/core/pim/todo/todo.pro +++ b/core/pim/todo/todo.pro | |||
@@ -1,34 +1,32 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS= mainwindow.h \ | 4 | HEADERS= mainwindow.h \ |
5 | todotable.h \ | 5 | todotable.h \ |
6 | todoentryimpl.h \ | 6 | todoentryimpl.h \ |
7 | todolabel.h | 7 | todolabel.h |
8 | SOURCES= main.cpp \ | 8 | SOURCES= main.cpp \ |
9 | mainwindow.cpp \ | 9 | mainwindow.cpp \ |
10 | todotable.cpp \ | 10 | todotable.cpp \ |
11 | todoentryimpl.cpp \ | 11 | todoentryimpl.cpp \ |
12 | todolabel.cc | 12 | todolabel.cc |
13 | |||
14 | INTERFACES= todoentry.ui | 13 | INTERFACES= todoentry.ui |
15 | |||
16 | TARGET = todolist | 14 | TARGET = todolist |
17 | INCLUDEPATH += $(OPIEDIR)/include | 15 | INCLUDEPATH += $(OPIEDIR)/include |
18 | DEPENDPATH+= $(OPIEDIR)/include | 16 | DEPENDPATH+= $(OPIEDIR)/include |
19 | LIBS += -lqpe -lopie | 17 | LIBS += -lqpe -lopie |
20 | 18 | ||
21 | TRANSLATIONS = ../i18n/pt_BR/todolist.ts | 19 | TRANSLATIONS = ../../../i18n/de/todolist.ts \ |
22 | TRANSLATIONS += ../i18n/es/todolist.ts | 20 | ../../../i18n/en/todolist.ts \ |
23 | TRANSLATIONS += ../i18n/pt/todolist.ts | 21 | ../../../i18n/es/todolist.ts \ |
24 | TRANSLATIONS += ../i18n/de/todolist.ts | 22 | ../../../i18n/fr/todolist.ts \ |
25 | TRANSLATIONS += ../i18n/en/todolist.ts | 23 | ../../../i18n/hu/todolist.ts \ |
26 | TRANSLATIONS += ../i18n/hu/todolist.ts | 24 | ../../../i18n/ja/todolist.ts \ |
27 | TRANSLATIONS += ../i18n/sl/todolist.ts | 25 | ../../../i18n/ko/todolist.ts \ |
28 | TRANSLATIONS += ../i18n/pl/todolist.ts | 26 | ../../../i18n/no/todolist.ts \ |
29 | TRANSLATIONS += ../i18n/ja/todolist.ts | 27 | ../../../i18n/pl/todolist.ts \ |
30 | TRANSLATIONS += ../i18n/ko/todolist.ts | 28 | ../../../i18n/pt/todolist.ts \ |
31 | TRANSLATIONS += ../i18n/no/todolist.ts | 29 | ../../../i18n/pt_BR/todolist.ts \ |
32 | TRANSLATIONS += ../i18n/zh_CN/todolist.ts | 30 | ../../../i18n/sl/todolist.ts \ |
33 | TRANSLATIONS += ../i18n/zh_TW/todolist.ts | 31 | ../../../i18n/zh_CN/todolist.ts \ |
34 | TRANSLATIONS += ../i18n/fr/todolist.ts | 32 | ../../../i18n/zh_TW/todolist.ts |
diff --git a/core/settings/citytime/citytime.pro b/core/settings/citytime/citytime.pro index 11a135d..4b0b3ff 100644 --- a/core/settings/citytime/citytime.pro +++ b/core/settings/citytime/citytime.pro | |||
@@ -1,26 +1,26 @@ | |||
1 | # $Id$ | 1 | # $Id$ |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | TEMPLATE = app | 3 | TEMPLATE = app |
4 | DESTDIR = $(OPIEDIR)/bin | 4 | DESTDIR = $(OPIEDIR)/bin |
5 | INTERFACES = citytimebase.ui | 5 | INTERFACES = citytimebase.ui |
6 | HEADERS = citytime.h zonemap.h sun.h stylusnormalizer.h | 6 | HEADERS = citytime.h zonemap.h sun.h stylusnormalizer.h |
7 | SOURCES = citytime.cpp zonemap.cpp main.cpp sun.c stylusnormalizer.cpp | 7 | SOURCES = citytime.cpp zonemap.cpp main.cpp sun.c stylusnormalizer.cpp |
8 | TARGET = citytime | 8 | TARGET = citytime |
9 | INCLUDEPATH += $(OPIEDIR)/include | 9 | INCLUDEPATH += $(OPIEDIR)/include |
10 | DEPENDPATH += $(OPIEDIR)/include | 10 | DEPENDPATH += $(OPIEDIR)/include |
11 | LIBS += -lqpe | 11 | LIBS += -lqpe |
12 | 12 | ||
13 | TRANSLATIONS = ../i18n/de/citytime.ts | 13 | TRANSLATIONS = ../../../i18n/de/citytime.ts \ |
14 | TRANSLATIONS += ../i18n/es/citytime.ts | 14 | ../../../i18n/en/citytime.ts \ |
15 | TRANSLATIONS += ../i18n/pt/citytime.ts | 15 | ../../../i18n/es/citytime.ts \ |
16 | TRANSLATIONS += ../i18n/pt_BR/citytime.ts | 16 | ../../../i18n/fr/citytime.ts \ |
17 | TRANSLATIONS += ../i18n/en/citytime.ts | 17 | ../../../i18n/hu/citytime.ts \ |
18 | TRANSLATIONS += ../i18n/hu/citytime.ts | 18 | ../../../i18n/ja/citytime.ts \ |
19 | TRANSLATIONS += ../i18n/ja/citytime.ts | 19 | ../../../i18n/ko/citytime.ts \ |
20 | TRANSLATIONS += ../i18n/ko/citytime.ts | 20 | ../../../i18n/no/citytime.ts \ |
21 | TRANSLATIONS += ../i18n/pl/citytime.ts | 21 | ../../../i18n/pl/citytime.ts \ |
22 | TRANSLATIONS += ../i18n/fr/citytime.ts | 22 | ../../../i18n/pt/citytime.ts \ |
23 | TRANSLATIONS += ../i18n/sl/citytime.ts | 23 | ../../../i18n/pt_BR/citytime.ts \ |
24 | TRANSLATIONS += ../i18n/no/citytime.ts | 24 | ../../../i18n/sl/citytime.ts \ |
25 | TRANSLATIONS += ../i18n/zh_CN/citytime.ts | 25 | ../../../i18n/zh_CN/citytime.ts \ |
26 | TRANSLATIONS += ../i18n/zh_TW/citytime.ts | 26 | ../../../i18n/zh_TW/citytime.ts |
diff --git a/core/settings/light-and-power/light-and-power.pro b/core/settings/light-and-power/light-and-power.pro index eb4a0db..456415b 100644 --- a/core/settings/light-and-power/light-and-power.pro +++ b/core/settings/light-and-power/light-and-power.pro | |||
@@ -1,17 +1,25 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = settings.h | 4 | HEADERS = settings.h |
5 | SOURCES = light.cpp main.cpp | 5 | SOURCES = light.cpp main.cpp |
6 | INTERFACES= lightsettingsbase.ui | 6 | INTERFACES= lightsettingsbase.ui |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= ../$(OPIEDIR)/include | 8 | DEPENDPATH+= ../$(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | TARGET = light-and-power | 10 | TARGET = light-and-power |
11 | 11 | ||
12 | TRANSLATIONS = ../../i18n/de/light-and-power.ts | 12 | TRANSLATIONS = ../../../i18n/de/light-and-power.ts \ |
13 | TRANSLATIONS += ../../i18n/es/light-and-power.ts | 13 | ../../../i18n/en/light-and-power.ts \ |
14 | TRANSLATIONS += ../../i18n/pt/light-and-power.ts | 14 | ../../../i18n/es/light-and-power.ts \ |
15 | TRANSLATIONS += ../../i18n/pt_BR/light-and-power.ts | 15 | ../../../i18n/fr/light-and-power.ts \ |
16 | TRANSLATIONS += ../../i18n/pl/light-and-power.ts | 16 | ../../../i18n/hu/light-and-power.ts \ |
17 | TRANSLATIONS += ../../i18n/fr/light-and-power.ts | 17 | ../../../i18n/ja/light-and-power.ts \ |
18 | ../../../i18n/ko/light-and-power.ts \ | ||
19 | ../../../i18n/no/light-and-power.ts \ | ||
20 | ../../../i18n/pl/light-and-power.ts \ | ||
21 | ../../../i18n/pt/light-and-power.ts \ | ||
22 | ../../../i18n/pt_BR/light-and-power.ts \ | ||
23 | ../../../i18n/sl/light-and-power.ts \ | ||
24 | ../../../i18n/zh_CN/light-and-power.ts \ | ||
25 | ../../../i18n/zh_TW/light-and-power.ts | ||
diff --git a/core/settings/security/security.pro b/core/settings/security/security.pro index 6b28485..2c815f0 100644 --- a/core/settings/security/security.pro +++ b/core/settings/security/security.pro | |||
@@ -1,25 +1,25 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = security.h | 4 | HEADERS = security.h |
5 | SOURCES = security.cpp main.cpp | 5 | SOURCES = security.cpp main.cpp |
6 | INTERFACES= securitybase.ui | 6 | INTERFACES= securitybase.ui |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= ../$(OPIEDIR)/include | 8 | DEPENDPATH+= ../$(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | TARGET = security | 10 | TARGET = security |
11 | 11 | ||
12 | TRANSLATIONS = ../../i18n/pt_BR/security.ts | 12 | TRANSLATIONS = ../../../i18n/de/security.ts \ |
13 | TRANSLATIONS += ../../i18n/es/security.ts | 13 | ../../../i18n/en/security.ts \ |
14 | TRANSLATIONS += ../../i18n/pt/security.ts | 14 | ../../../i18n/es/security.ts \ |
15 | TRANSLATIONS += ../../i18n/de/security.ts | 15 | ../../../i18n/fr/security.ts \ |
16 | TRANSLATIONS += ../../i18n/en/security.ts | 16 | ../../../i18n/hu/security.ts \ |
17 | TRANSLATIONS += ../../i18n/hu/security.ts | 17 | ../../../i18n/ja/security.ts \ |
18 | TRANSLATIONS += ../../i18n/sl/security.ts | 18 | ../../../i18n/ko/security.ts \ |
19 | TRANSLATIONS += ../../i18n/ja/security.ts | 19 | ../../../i18n/no/security.ts \ |
20 | TRANSLATIONS += ../../i18n/ko/security.ts | 20 | ../../../i18n/pl/security.ts \ |
21 | TRANSLATIONS += ../../i18n/pl/security.ts | 21 | ../../../i18n/pt/security.ts \ |
22 | TRANSLATIONS += ../../i18n/no/security.ts | 22 | ../../../i18n/pt_BR/security.ts \ |
23 | TRANSLATIONS += ../../i18n/zh_CN/security.ts | 23 | ../../../i18n/sl/security.ts \ |
24 | TRANSLATIONS += ../../i18n/zh_TW/security.ts | 24 | ../../../i18n/zh_CN/security.ts \ |
25 | TRANSLATIONS += ../../i18n/fr/security.ts | 25 | ../../../i18n/zh_TW/security.ts |
diff --git a/example/example.pro b/example/example.pro index d150b1c..5d2b39a 100644 --- a/example/example.pro +++ b/example/example.pro | |||
@@ -1,10 +1,25 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | #CONFIG = qt warn_on debug | 2 | #CONFIG = qt warn_on debug |
3 | CONFIG = qt warn_on release | 3 | CONFIG = qt warn_on release |
4 | HEADERS = example.h | 4 | HEADERS = example.h |
5 | SOURCES = main.cpp example.cpp | 5 | SOURCES = main.cpp example.cpp |
6 | INCLUDEPATH+= $(OPIEDIR)/include | 6 | INCLUDEPATH+= $(OPIEDIR)/include |
7 | DEPENDPATH+= $(OPIEDIR)/include | 7 | DEPENDPATH+= $(OPIEDIR)/include |
8 | LIBS += -lqpe | 8 | LIBS += -lqpe |
9 | INTERFACES= examplebase.ui | 9 | INTERFACES= examplebase.ui |
10 | TARGET = example | 10 | TARGET = example |
11 | |||
12 | TRANSLATIONS = ../i18n/de/example.ts \ | ||
13 | ../i18n/en/example.ts \ | ||
14 | ../i18n/es/example.ts \ | ||
15 | ../i18n/fr/example.ts \ | ||
16 | ../i18n/hu/example.ts \ | ||
17 | ../i18n/ja/example.ts \ | ||
18 | ../i18n/ko/example.ts \ | ||
19 | ../i18n/no/example.ts \ | ||
20 | ../i18n/pl/example.ts \ | ||
21 | ../i18n/pt/example.ts \ | ||
22 | ../i18n/pt_BR/example.ts \ | ||
23 | ../i18n/sl/example.ts \ | ||
24 | ../i18n/zh_CN/example.ts \ | ||
25 | ../i18n/zh_TW/example.ts | ||
diff --git a/freetype/freetype.pro b/freetype/freetype.pro index f63a087..1196db9 100644 --- a/freetype/freetype.pro +++ b/freetype/freetype.pro | |||
@@ -1,13 +1,28 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS =fontfactoryttf_qws.h freetypefactoryimpl.h | 3 | HEADERS =fontfactoryttf_qws.h freetypefactoryimpl.h |
4 | SOURCES =fontfactoryttf_qws.cpp freetypefactoryimpl.cpp | 4 | SOURCES =fontfactoryttf_qws.cpp freetypefactoryimpl.cpp |
5 | qt2:HEADERS+= qfontdata_p.h | 5 | qt2:HEADERS+= qfontdata_p.h |
6 | TARGET = freetypefactory | 6 | TARGET = freetypefactory |
7 | DESTDIR = ../plugins/fontfactories | 7 | DESTDIR = ../plugins/fontfactories |
8 | INCLUDEPATH += $(OPIEDIR)/include | 8 | INCLUDEPATH += $(OPIEDIR)/include |
9 | DEPENDPATH += $(OPIEDIR)/include | 9 | DEPENDPATH += $(OPIEDIR)/include |
10 | #INCLUDEPATH += $(OPIEDIR)/include | 10 | #INCLUDEPATH += $(OPIEDIR)/include |
11 | #DEPENDPATH+= /usr/local/include/freetype2 | 11 | #DEPENDPATH+= /usr/local/include/freetype2 |
12 | LIBS += -lqpe -lfreetype | 12 | LIBS += -lqpe -lfreetype |
13 | VERSION = 1.0.0 | 13 | VERSION = 1.0.0 |
14 | |||
15 | TRANSLATIONS = ../i18n/de/libfreetypefactory.ts \ | ||
16 | ../i18n/en/libfreetypefactory.ts \ | ||
17 | ../i18n/es/libfreetypefactory.ts \ | ||
18 | ../i18n/fr/libfreetypefactory.ts \ | ||
19 | ../i18n/hu/libfreetypefactory.ts \ | ||
20 | ../i18n/ja/libfreetypefactory.ts \ | ||
21 | ../i18n/ko/libfreetypefactory.ts \ | ||
22 | ../i18n/no/libfreetypefactory.ts \ | ||
23 | ../i18n/pl/libfreetypefactory.ts \ | ||
24 | ../i18n/pt/libfreetypefactory.ts \ | ||
25 | ../i18n/pt_BR/libfreetypefactory.ts \ | ||
26 | ../i18n/sl/libfreetypefactory.ts \ | ||
27 | ../i18n/zh_CN/libfreetypefactory.ts \ | ||
28 | ../i18n/zh_TW/libfreetypefactory.ts | ||
diff --git a/inputmethods/dvorak/dvorak.pro b/inputmethods/dvorak/dvorak.pro index 3ad6e07..5c14761 100644 --- a/inputmethods/dvorak/dvorak.pro +++ b/inputmethods/dvorak/dvorak.pro | |||
@@ -1,34 +1,31 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= dvorak.h \ | 3 | HEADERS= dvorak.h \ |
4 | ../pickboard/pickboardcfg.h \ | 4 | ../pickboard/pickboardcfg.h \ |
5 | ../pickboard/pickboardpicks.h \ | 5 | ../pickboard/pickboardpicks.h \ |
6 | dvorakimpl.h | 6 | dvorakimpl.h |
7 | SOURCES= dvorak.cpp \ | 7 | SOURCES= dvorak.cpp \ |
8 | ../pickboard/pickboardcfg.cpp \ | 8 | ../pickboard/pickboardcfg.cpp \ |
9 | ../pickboard/pickboardpicks.cpp \ | 9 | ../pickboard/pickboardpicks.cpp \ |
10 | dvorakimpl.cpp | 10 | dvorakimpl.cpp |
11 | TARGET = qdvorak | 11 | TARGET = qdvorak |
12 | DESTDIR = ../../plugins/inputmethods | 12 | DESTDIR = ../../plugins/inputmethods |
13 | INCLUDEPATH += $(OPIEDIR)/include | 13 | INCLUDEPATH += $(OPIEDIR)/include |
14 | DEPENDPATH += ../$(OPIEDIR)/include ../../launcher | 14 | DEPENDPATH += ../$(OPIEDIR)/include ../../launcher |
15 | LIBS += -lqpe | 15 | LIBS += -lqpe |
16 | VERSION = 1.0.0 | 16 | VERSION = 1.0.0 |
17 | 17 | ||
18 | 18 | TRANSLATIONS = ../../i18n/de/libqdvorak.ts \ | |
19 | 19 | ../../i18n/en/libqdvorak.ts \ | |
20 | TRANSLATIONS = ../../i18n/de/libqdvorak.ts | 20 | ../../i18n/es/libqdvorak.ts \ |
21 | TRANSLATIONS += ../../i18n/en/libqdvorak.ts | 21 | ../../i18n/fr/libqdvorak.ts \ |
22 | TRANSLATIONS += ../../i18n/es/libqdvorak.ts | 22 | ../../i18n/hu/libqdvorak.ts \ |
23 | TRANSLATIONS += ../../i18n/fr/libqdvorak.ts | 23 | ../../i18n/ja/libqdvorak.ts \ |
24 | TRANSLATIONS += ../../i18n/hu/libqdvorak.ts | 24 | ../../i18n/ko/libqdvorak.ts \ |
25 | TRANSLATIONS += ../../i18n/ja/libqdvorak.ts | 25 | ../../i18n/no/libqdvorak.ts \ |
26 | TRANSLATIONS += ../../i18n/ko/libqdvorak.ts | 26 | ../../i18n/pl/libqdvorak.ts \ |
27 | TRANSLATIONS += ../../i18n/no/libqdvorak.ts | 27 | ../../i18n/pt/libqdvorak.ts \ |
28 | TRANSLATIONS += ../../i18n/pl/libqdvorak.ts | 28 | ../../i18n/pt_BR/libqdvorak.ts \ |
29 | TRANSLATIONS += ../../i18n/pt/libqdvorak.ts | 29 | ../../i18n/sl/libqdvorak.ts \ |
30 | TRANSLATIONS += ../../i18n/pt_BR/libqdvorak.ts | 30 | ../../i18n/zh_CN/libqdvorak.ts \ |
31 | TRANSLATIONS += ../../i18n/sl/libqdvorak.ts | 31 | ../../i18n/zh_TW/libqdvorak.ts |
32 | TRANSLATIONS += ../../i18n/zh_CN/libqdvorak.ts | ||
33 | TRANSLATIONS += ../../i18n/zh_TW/libqdvorak.ts | ||
34 | |||
diff --git a/inputmethods/handwriting/handwriting.pro b/inputmethods/handwriting/handwriting.pro index a8bcda7..b4a742d 100644 --- a/inputmethods/handwriting/handwriting.pro +++ b/inputmethods/handwriting/handwriting.pro | |||
@@ -1,49 +1,46 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= qimpenchar.h \ | 3 | HEADERS= qimpenchar.h \ |
4 | qimpenprofile.h \ | 4 | qimpenprofile.h \ |
5 | qimpencombining.h \ | 5 | qimpencombining.h \ |
6 | qimpenhelp.h \ | 6 | qimpenhelp.h \ |
7 | qimpeninput.h \ | 7 | qimpeninput.h \ |
8 | qimpenmatch.h \ | 8 | qimpenmatch.h \ |
9 | qimpensetup.h \ | 9 | qimpensetup.h \ |
10 | qimpenstroke.h \ | 10 | qimpenstroke.h \ |
11 | qimpenwidget.h \ | 11 | qimpenwidget.h \ |
12 | qimpenwordpick.h \ | 12 | qimpenwordpick.h \ |
13 | handwritingimpl.h | 13 | handwritingimpl.h |
14 | SOURCES= qimpenchar.cpp \ | 14 | SOURCES= qimpenchar.cpp \ |
15 | qimpenprofile.cpp \ | 15 | qimpenprofile.cpp \ |
16 | qimpencombining.cpp \ | 16 | qimpencombining.cpp \ |
17 | qimpenhelp.cpp \ | 17 | qimpenhelp.cpp \ |
18 | qimpeninput.cpp \ | 18 | qimpeninput.cpp \ |
19 | qimpenmatch.cpp \ | 19 | qimpenmatch.cpp \ |
20 | qimpensetup.cpp \ | 20 | qimpensetup.cpp \ |
21 | qimpenstroke.cpp \ | 21 | qimpenstroke.cpp \ |
22 | qimpenwidget.cpp \ | 22 | qimpenwidget.cpp \ |
23 | qimpenwordpick.cpp \ | 23 | qimpenwordpick.cpp \ |
24 | handwritingimpl.cpp | 24 | handwritingimpl.cpp |
25 | INTERFACES = qimpenprefbase.ui | 25 | INTERFACES = qimpenprefbase.ui |
26 | TARGET = qhandwriting | 26 | TARGET = qhandwriting |
27 | DESTDIR = ../../plugins/inputmethods | 27 | DESTDIR = ../../plugins/inputmethods |
28 | INCLUDEPATH += $(OPIEDIR)/include | 28 | INCLUDEPATH += $(OPIEDIR)/include |
29 | DEPENDPATH += ../$(OPIEDIR)/include ../../launcher | 29 | DEPENDPATH += ../$(OPIEDIR)/include ../../launcher |
30 | LIBS += -lqpe | 30 | LIBS += -lqpe |
31 | VERSION = 1.0.0 | 31 | VERSION = 1.0.0 |
32 | 32 | ||
33 | 33 | TRANSLATIONS = ../../i18n/de/libqhandwriting.ts \ | |
34 | 34 | ../../i18n/en/libqhandwriting.ts \ | |
35 | TRANSLATIONS = ../../i18n/de/libqhandwriting.ts | 35 | ../../i18n/es/libqhandwriting.ts \ |
36 | TRANSLATIONS += ../../i18n/en/libqhandwriting.ts | 36 | ../../i18n/fr/libqhandwriting.ts \ |
37 | TRANSLATIONS += ../../i18n/es/libqhandwriting.ts | 37 | ../../i18n/hu/libqhandwriting.ts \ |
38 | TRANSLATIONS += ../../i18n/fr/libqhandwriting.ts | 38 | ../../i18n/ja/libqhandwriting.ts \ |
39 | TRANSLATIONS += ../../i18n/hu/libqhandwriting.ts | 39 | ../../i18n/ko/libqhandwriting.ts \ |
40 | TRANSLATIONS += ../../i18n/ja/libqhandwriting.ts | 40 | ../../i18n/no/libqhandwriting.ts \ |
41 | TRANSLATIONS += ../../i18n/ko/libqhandwriting.ts | 41 | ../../i18n/pl/libqhandwriting.ts \ |
42 | TRANSLATIONS += ../../i18n/no/libqhandwriting.ts | 42 | ../../i18n/pt/libqhandwriting.ts \ |
43 | TRANSLATIONS += ../../i18n/pl/libqhandwriting.ts | 43 | ../../i18n/pt_BR/libqhandwriting.ts \ |
44 | TRANSLATIONS += ../../i18n/pt/libqhandwriting.ts | 44 | ../../i18n/sl/libqhandwriting.ts \ |
45 | TRANSLATIONS += ../../i18n/pt_BR/libqhandwriting.ts | 45 | ../../i18n/zh_CN/libqhandwriting.ts \ |
46 | TRANSLATIONS += ../../i18n/sl/libqhandwriting.ts | 46 | ../../i18n/zh_TW/libqhandwriting.ts |
47 | TRANSLATIONS += ../../i18n/zh_CN/libqhandwriting.ts | ||
48 | TRANSLATIONS += ../../i18n/zh_TW/libqhandwriting.ts | ||
49 | |||
diff --git a/inputmethods/jumpx/jumpx.pro b/inputmethods/jumpx/jumpx.pro index 101ae49..d8d123c 100644 --- a/inputmethods/jumpx/jumpx.pro +++ b/inputmethods/jumpx/jumpx.pro | |||
@@ -1,29 +1,27 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = keyboard.h \ | 3 | HEADERS = keyboard.h \ |
4 | keyboardimpl.h | 4 | keyboardimpl.h |
5 | SOURCES = keyboard.cpp \ | 5 | SOURCES = keyboard.cpp \ |
6 | keyboardimpl.cpp | 6 | keyboardimpl.cpp |
7 | TARGET = qjumpx | 7 | TARGET = qjumpx |
8 | DESTDIR = ../../plugins/inputmethods | 8 | DESTDIR = ../../plugins/inputmethods |
9 | INCLUDEPATH += $(OPIEDIR)/include | 9 | INCLUDEPATH += $(OPIEDIR)/include |
10 | DEPENDPATH += $(OPIEDIR)/include | 10 | DEPENDPATH += $(OPIEDIR)/include |
11 | LIBS += -lqpe | 11 | LIBS += -lqpe |
12 | VERSION = 1.0.0 | 12 | VERSION = 1.0.0 |
13 | 13 | ||
14 | 14 | TRANSLATIONS = ../../i18n/de/libqjumpx.ts \ | |
15 | TRANSLATIONS = ../../i18n/de/libqjumpx.ts | 15 | ../../i18n/en/libqjumpx.ts \ |
16 | TRANSLATIONS += ../../i18n/en/libqjumpx.ts | 16 | ../../i18n/es/libqjumpx.ts \ |
17 | TRANSLATIONS += ../../i18n/es/libqjumpx.ts | 17 | ../../i18n/fr/libqjumpx.ts \ |
18 | TRANSLATIONS += ../../i18n/fr/libqjumpx.ts | 18 | ../../i18n/hu/libqjumpx.ts \ |
19 | TRANSLATIONS += ../../i18n/hu/libqjumpx.ts | 19 | ../../i18n/ja/libqjumpx.ts \ |
20 | TRANSLATIONS += ../../i18n/ja/libqjumpx.ts | 20 | ../../i18n/ko/libqjumpx.ts \ |
21 | TRANSLATIONS += ../../i18n/ko/libqjumpx.ts | 21 | ../../i18n/no/libqjumpx.ts \ |
22 | TRANSLATIONS += ../../i18n/no/libqjumpx.ts | 22 | ../../i18n/pl/libqjumpx.ts \ |
23 | TRANSLATIONS += ../../i18n/pl/libqjumpx.ts | 23 | ../../i18n/pt/libqjumpx.ts \ |
24 | TRANSLATIONS += ../../i18n/pt/libqjumpx.ts | 24 | ../../i18n/pt_BR/libqjumpx.ts \ |
25 | TRANSLATIONS += ../../i18n/pt_BR/libqjumpx.ts | 25 | ../../i18n/sl/libqjumpx.ts \ |
26 | TRANSLATIONS += ../../i18n/sl/libqjumpx.ts | 26 | ../../i18n/zh_CN/libqjumpx.ts \ |
27 | TRANSLATIONS += ../../i18n/zh_CN/libqjumpx.ts | 27 | ../../i18n/zh_TW/libqjumpx.ts |
28 | TRANSLATIONS += ../../i18n/zh_TW/libqjumpx.ts | ||
29 | |||
diff --git a/inputmethods/keyboard/keyboard.pro b/inputmethods/keyboard/keyboard.pro index fbdf5ed..105316f 100644 --- a/inputmethods/keyboard/keyboard.pro +++ b/inputmethods/keyboard/keyboard.pro | |||
@@ -1,34 +1,31 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= keyboard.h \ | 3 | HEADERS= keyboard.h \ |
4 | ../pickboard/pickboardcfg.h \ | 4 | ../pickboard/pickboardcfg.h \ |
5 | ../pickboard/pickboardpicks.h \ | 5 | ../pickboard/pickboardpicks.h \ |
6 | keyboardimpl.h | 6 | keyboardimpl.h |
7 | SOURCES= keyboard.cpp \ | 7 | SOURCES= keyboard.cpp \ |
8 | ../pickboard/pickboardcfg.cpp \ | 8 | ../pickboard/pickboardcfg.cpp \ |
9 | ../pickboard/pickboardpicks.cpp \ | 9 | ../pickboard/pickboardpicks.cpp \ |
10 | keyboardimpl.cpp | 10 | keyboardimpl.cpp |
11 | TARGET = qkeyboard | 11 | TARGET = qkeyboard |
12 | DESTDIR = ../../plugins/inputmethods | 12 | DESTDIR = ../../plugins/inputmethods |
13 | INCLUDEPATH += $(OPIEDIR)/include | 13 | INCLUDEPATH += $(OPIEDIR)/include |
14 | DEPENDPATH += ../$(OPIEDIR)/include ../../launcher | 14 | DEPENDPATH += ../$(OPIEDIR)/include ../../launcher |
15 | LIBS += -lqpe | 15 | LIBS += -lqpe |
16 | VERSION = 1.0.0 | 16 | VERSION = 1.0.0 |
17 | 17 | ||
18 | 18 | TRANSLATIONS = ../../i18n/de/libqkeyboard.ts \ | |
19 | 19 | ../../i18n/en/libqkeyboard.ts \ | |
20 | TRANSLATIONS = ../../i18n/de/libqkeyboard.ts | 20 | ../../i18n/es/libqkeyboard.ts \ |
21 | TRANSLATIONS += ../../i18n/en/libqkeyboard.ts | 21 | ../../i18n/fr/libqkeyboard.ts \ |
22 | TRANSLATIONS += ../../i18n/es/libqkeyboard.ts | 22 | ../../i18n/hu/libqkeyboard.ts \ |
23 | TRANSLATIONS += ../../i18n/fr/libqkeyboard.ts | 23 | ../../i18n/ja/libqkeyboard.ts \ |
24 | TRANSLATIONS += ../../i18n/hu/libqkeyboard.ts | 24 | ../../i18n/ko/libqkeyboard.ts \ |
25 | TRANSLATIONS += ../../i18n/ja/libqkeyboard.ts | 25 | ../../i18n/no/libqkeyboard.ts \ |
26 | TRANSLATIONS += ../../i18n/ko/libqkeyboard.ts | 26 | ../../i18n/pl/libqkeyboard.ts \ |
27 | TRANSLATIONS += ../../i18n/no/libqkeyboard.ts | 27 | ../../i18n/pt/libqkeyboard.ts \ |
28 | TRANSLATIONS += ../../i18n/pl/libqkeyboard.ts | 28 | ../../i18n/pt_BR/libqkeyboard.ts \ |
29 | TRANSLATIONS += ../../i18n/pt/libqkeyboard.ts | 29 | ../../i18n/sl/libqkeyboard.ts \ |
30 | TRANSLATIONS += ../../i18n/pt_BR/libqkeyboard.ts | 30 | ../../i18n/zh_CN/libqkeyboard.ts \ |
31 | TRANSLATIONS += ../../i18n/sl/libqkeyboard.ts | 31 | ../../i18n/zh_TW/libqkeyboard.ts |
32 | TRANSLATIONS += ../../i18n/zh_CN/libqkeyboard.ts | ||
33 | TRANSLATIONS += ../../i18n/zh_TW/libqkeyboard.ts | ||
34 | |||
diff --git a/inputmethods/kjumpx/kjumpx.pro b/inputmethods/kjumpx/kjumpx.pro index d86a0e5..23faa9c 100644 --- a/inputmethods/kjumpx/kjumpx.pro +++ b/inputmethods/kjumpx/kjumpx.pro | |||
@@ -1,29 +1,27 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = keyboard.h \ | 3 | HEADERS = keyboard.h \ |
4 | keyboardimpl.h | 4 | keyboardimpl.h |
5 | SOURCES = keyboard.cpp \ | 5 | SOURCES = keyboard.cpp \ |
6 | keyboardimpl.cpp | 6 | keyboardimpl.cpp |
7 | TARGET = qkjumpx | 7 | TARGET = qkjumpx |
8 | DESTDIR = ../../plugins/inputmethods | 8 | DESTDIR = ../../plugins/inputmethods |
9 | INCLUDEPATH += $(OPIEDIR)/include | 9 | INCLUDEPATH += $(OPIEDIR)/include |
10 | DEPENDPATH += $(OPIEDIR)/include | 10 | DEPENDPATH += $(OPIEDIR)/include |
11 | LIBS += -lqpe | 11 | LIBS += -lqpe |
12 | VERSION = 1.0.0 | 12 | VERSION = 1.0.0 |
13 | 13 | ||
14 | 14 | TRANSLATIONS = ../../i18n/de/libqkjumpx.ts \ | |
15 | TRANSLATIONS = ../../i18n/de/libqkjumpx.ts | 15 | ../../i18n/en/libqkjumpx.ts \ |
16 | TRANSLATIONS += ../../i18n/en/libqkjumpx.ts | 16 | ../../i18n/es/libqkjumpx.ts \ |
17 | TRANSLATIONS += ../../i18n/es/libqkjumpx.ts | 17 | ../../i18n/fr/libqkjumpx.ts \ |
18 | TRANSLATIONS += ../../i18n/fr/libqkjumpx.ts | 18 | ../../i18n/hu/libqkjumpx.ts \ |
19 | TRANSLATIONS += ../../i18n/hu/libqkjumpx.ts | 19 | ../../i18n/ja/libqkjumpx.ts \ |
20 | TRANSLATIONS += ../../i18n/ja/libqkjumpx.ts | 20 | ../../i18n/ko/libqkjumpx.ts \ |
21 | TRANSLATIONS += ../../i18n/ko/libqkjumpx.ts | 21 | ../../i18n/no/libqkjumpx.ts \ |
22 | TRANSLATIONS += ../../i18n/no/libqkjumpx.ts | 22 | ../../i18n/pl/libqkjumpx.ts \ |
23 | TRANSLATIONS += ../../i18n/pl/libqkjumpx.ts | 23 | ../../i18n/pt/libqkjumpx.ts \ |
24 | TRANSLATIONS += ../../i18n/pt/libqkjumpx.ts | 24 | ../../i18n/pt_BR/libqkjumpx.ts \ |
25 | TRANSLATIONS += ../../i18n/pt_BR/libqkjumpx.ts | 25 | ../../i18n/sl/libqkjumpx.ts \ |
26 | TRANSLATIONS += ../../i18n/sl/libqkjumpx.ts | 26 | ../../i18n/zh_CN/libqkjumpx.ts \ |
27 | TRANSLATIONS += ../../i18n/zh_CN/libqkjumpx.ts | 27 | ../../i18n/zh_TW/libqkjumpx.ts |
28 | TRANSLATIONS += ../../i18n/zh_TW/libqkjumpx.ts | ||
29 | |||
diff --git a/inputmethods/pickboard/pickboard.pro b/inputmethods/pickboard/pickboard.pro index 6e0ac4d..3ede6b5 100644 --- a/inputmethods/pickboard/pickboard.pro +++ b/inputmethods/pickboard/pickboard.pro | |||
@@ -1,28 +1,25 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= pickboard.h pickboardcfg.h pickboardimpl.h pickboardpicks.h | 3 | HEADERS= pickboard.h pickboardcfg.h pickboardimpl.h pickboardpicks.h |
4 | SOURCES= pickboard.cpp pickboardcfg.cpp pickboardimpl.cpp pickboardpicks.cpp | 4 | SOURCES= pickboard.cpp pickboardcfg.cpp pickboardimpl.cpp pickboardpicks.cpp |
5 | TARGET = qpickboard | 5 | TARGET = qpickboard |
6 | DESTDIR = ../../plugins/inputmethods | 6 | DESTDIR = ../../plugins/inputmethods |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += ../$(OPIEDIR)/include ../../launcher | 8 | DEPENDPATH += ../$(OPIEDIR)/include ../../launcher |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | 11 | ||
12 | 12 | TRANSLATIONS = ../../i18n/de/libqpickboard.ts \ | |
13 | 13 | ../../i18n/en/libqpickboard.ts \ | |
14 | TRANSLATIONS = ../../i18n/de/libqpickboard.ts | 14 | ../../i18n/es/libqpickboard.ts \ |
15 | TRANSLATIONS += ../../i18n/en/libqpickboard.ts | 15 | ../../i18n/fr/libqpickboard.ts \ |
16 | TRANSLATIONS += ../../i18n/es/libqpickboard.ts | 16 | ../../i18n/hu/libqpickboard.ts \ |
17 | TRANSLATIONS += ../../i18n/fr/libqpickboard.ts | 17 | ../../i18n/ja/libqpickboard.ts \ |
18 | TRANSLATIONS += ../../i18n/hu/libqpickboard.ts | 18 | ../../i18n/ko/libqpickboard.ts \ |
19 | TRANSLATIONS += ../../i18n/ja/libqpickboard.ts | 19 | ../../i18n/no/libqpickboard.ts \ |
20 | TRANSLATIONS += ../../i18n/ko/libqpickboard.ts | 20 | ../../i18n/pl/libqpickboard.ts \ |
21 | TRANSLATIONS += ../../i18n/no/libqpickboard.ts | 21 | ../../i18n/pt/libqpickboard.ts \ |
22 | TRANSLATIONS += ../../i18n/pl/libqpickboard.ts | 22 | ../../i18n/pt_BR/libqpickboard.ts \ |
23 | TRANSLATIONS += ../../i18n/pt/libqpickboard.ts | 23 | ../../i18n/sl/libqpickboard.ts \ |
24 | TRANSLATIONS += ../../i18n/pt_BR/libqpickboard.ts | 24 | ../../i18n/zh_CN/libqpickboard.ts \ |
25 | TRANSLATIONS += ../../i18n/sl/libqpickboard.ts | 25 | ../../i18n/zh_TW/libqpickboard.ts |
26 | TRANSLATIONS += ../../i18n/zh_CN/libqpickboard.ts | ||
27 | TRANSLATIONS += ../../i18n/zh_TW/libqpickboard.ts | ||
28 | |||
diff --git a/inputmethods/unikeyboard/unikeyboard.pro b/inputmethods/unikeyboard/unikeyboard.pro index 140d377..5427af4 100644 --- a/inputmethods/unikeyboard/unikeyboard.pro +++ b/inputmethods/unikeyboard/unikeyboard.pro | |||
@@ -1,28 +1,25 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= unikeyboard.h unikeyboardimpl.h | 3 | HEADERS= unikeyboard.h unikeyboardimpl.h |
4 | SOURCES= unikeyboard.cpp unikeyboardimpl.cpp | 4 | SOURCES= unikeyboard.cpp unikeyboardimpl.cpp |
5 | TARGET = qunikeyboard | 5 | TARGET = qunikeyboard |
6 | DESTDIR = ../../plugins/inputmethods | 6 | DESTDIR = ../../plugins/inputmethods |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += ../$(OPIEDIR)/include ../../launcher | 8 | DEPENDPATH += ../$(OPIEDIR)/include ../../launcher |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | VERSION = 1.0.0 | 10 | VERSION = 1.0.0 |
11 | 11 | ||
12 | 12 | TRANSLATIONS = ../../i18n/de/libqunikeyboard.ts \ | |
13 | 13 | ../../i18n/en/libqunikeyboard.ts \ | |
14 | TRANSLATIONS = ../../i18n/de/libqunikeyboard.ts | 14 | ../../i18n/es/libqunikeyboard.ts \ |
15 | TRANSLATIONS += ../../i18n/en/libqunikeyboard.ts | 15 | ../../i18n/fr/libqunikeyboard.ts \ |
16 | TRANSLATIONS += ../../i18n/es/libqunikeyboard.ts | 16 | ../../i18n/hu/libqunikeyboard.ts \ |
17 | TRANSLATIONS += ../../i18n/fr/libqunikeyboard.ts | 17 | ../../i18n/ja/libqunikeyboard.ts \ |
18 | TRANSLATIONS += ../../i18n/hu/libqunikeyboard.ts | 18 | ../../i18n/ko/libqunikeyboard.ts \ |
19 | TRANSLATIONS += ../../i18n/ja/libqunikeyboard.ts | 19 | ../../i18n/no/libqunikeyboard.ts \ |
20 | TRANSLATIONS += ../../i18n/ko/libqunikeyboard.ts | 20 | ../../i18n/pl/libqunikeyboard.ts \ |
21 | TRANSLATIONS += ../../i18n/no/libqunikeyboard.ts | 21 | ../../i18n/pt/libqunikeyboard.ts \ |
22 | TRANSLATIONS += ../../i18n/pl/libqunikeyboard.ts | 22 | ../../i18n/pt_BR/libqunikeyboard.ts \ |
23 | TRANSLATIONS += ../../i18n/pt/libqunikeyboard.ts | 23 | ../../i18n/sl/libqunikeyboard.ts \ |
24 | TRANSLATIONS += ../../i18n/pt_BR/libqunikeyboard.ts | 24 | ../../i18n/zh_CN/libqunikeyboard.ts \ |
25 | TRANSLATIONS += ../../i18n/sl/libqunikeyboard.ts | 25 | ../../i18n/zh_TW/libqunikeyboard.ts |
26 | TRANSLATIONS += ../../i18n/zh_CN/libqunikeyboard.ts | ||
27 | TRANSLATIONS += ../../i18n/zh_TW/libqunikeyboard.ts | ||
28 | |||
diff --git a/libopie/libopie.pro b/libopie/libopie.pro index d1cbe3e..1596c9a 100644 --- a/libopie/libopie.pro +++ b/libopie/libopie.pro | |||
@@ -1,8 +1,23 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qte warn_on release | 2 | CONFIG += qte warn_on release |
3 | HEADERS = ofontmenu.h ofileselector.h ofiledialog.h ofileview.h tododb.h todoevent.h todoresource.h todovcalresource.h xmltree.h colordialog.h colorpopupmenu.h oclickablelabel.h oprocctrl.h oprocess.h odevice.h | 3 | HEADERS = ofontmenu.h ofileselector.h ofiledialog.h ofileview.h tododb.h todoevent.h todoresource.h todovcalresource.h xmltree.h colordialog.h colorpopupmenu.h oclickablelabel.h oprocctrl.h oprocess.h odevice.h |
4 | SOURCES = ofontmenu.cc ofileselector.cc ofiledialog.cc xmltree.cc tododb.cpp todoevent.cpp todovcalresource.cpp colordialog.cpp colorpopupmenu.cpp oclickablelabel.cpp oprocctrl.cpp oprocess.cpp odevice.cpp | 4 | SOURCES = ofontmenu.cc ofileselector.cc ofiledialog.cc xmltree.cc tododb.cpp todoevent.cpp todovcalresource.cpp colordialog.cpp colorpopupmenu.cpp oclickablelabel.cpp oprocctrl.cpp oprocess.cpp odevice.cpp |
5 | TARGET = opie | 5 | TARGET = opie |
6 | INCLUDEPATH += $(OPIEDIR)/include | 6 | INCLUDEPATH += $(OPIEDIR)/include |
7 | DESTDIR = $(QTDIR)/lib$(PROJMAK) | 7 | DESTDIR = $(QTDIR)/lib$(PROJMAK) |
8 | #VERSION = 1.0.0 | 8 | #VERSION = 1.0.0 |
9 | |||
10 | TRANSLATIONS = ../i18n/de/libopie.ts \ | ||
11 | ../i18n/en/libopie.ts \ | ||
12 | ../i18n/es/libopie.ts \ | ||
13 | ../i18n/fr/libopie.ts \ | ||
14 | ../i18n/hu/libopie.ts \ | ||
15 | ../i18n/ja/libopie.ts \ | ||
16 | ../i18n/ko/libopie.ts \ | ||
17 | ../i18n/no/libopie.ts \ | ||
18 | ../i18n/pl/libopie.ts \ | ||
19 | ../i18n/pt/libopie.ts \ | ||
20 | ../i18n/pt_BR/libopie.ts \ | ||
21 | ../i18n/sl/libopie.ts \ | ||
22 | ../i18n/zh_CN/libopie.ts \ | ||
23 | ../i18n/zh_TW/libopie.ts | ||
diff --git a/library/library.pro b/library/library.pro index a05ee7e..cb4714a 100644 --- a/library/library.pro +++ b/library/library.pro | |||
@@ -1,143 +1,138 @@ | |||
1 | TEMPLATE= lib | 1 | TEMPLATE= lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS= calendar.h \ | 3 | HEADERS= calendar.h \ |
4 | global.h \ | 4 | global.h \ |
5 | resource.h \ | 5 | resource.h \ |
6 | xmlreader.h \ | 6 | xmlreader.h \ |
7 | mimetype.h \ | 7 | mimetype.h \ |
8 | menubutton.h \ | 8 | menubutton.h \ |
9 | network.h \ | 9 | network.h \ |
10 | networkinterface.h \ | 10 | networkinterface.h \ |
11 | filemanager.h \ | 11 | filemanager.h \ |
12 | fontmanager.h \ | 12 | fontmanager.h \ |
13 | qdawg.h \ | 13 | qdawg.h \ |
14 | datebookmonth.h \ | 14 | datebookmonth.h \ |
15 | fileselector.h \ | 15 | fileselector.h \ |
16 | fileselector_p.h \ | 16 | fileselector_p.h \ |
17 | imageedit.h \ | 17 | imageedit.h \ |
18 | qcopenvelope_qws.h \ | 18 | qcopenvelope_qws.h \ |
19 | qpedecoration_qws.h \ | 19 | qpedecoration_qws.h \ |
20 | qpeapplication.h \ | 20 | qpeapplication.h \ |
21 | qpestyle.h \ | 21 | qpestyle.h \ |
22 | qpedialog.h \ | 22 | qpedialog.h \ |
23 | lightstyle.h \ | 23 | lightstyle.h \ |
24 | config.h \ | 24 | config.h \ |
25 | applnk.h \ | 25 | applnk.h \ |
26 | sound.h \ | 26 | sound.h \ |
27 | tzselect.h \ | 27 | tzselect.h \ |
28 | qmath.h \ | 28 | qmath.h \ |
29 | datebookdb.h \ | 29 | datebookdb.h \ |
30 | alarmserver.h \ | 30 | alarmserver.h \ |
31 | process.h \ | 31 | process.h \ |
32 | password.h \ | 32 | password.h \ |
33 | timestring.h \ | 33 | timestring.h \ |
34 | fontfactoryinterface.h \ | 34 | fontfactoryinterface.h \ |
35 | fontdatabase.h \ | 35 | fontdatabase.h \ |
36 | power.h \ | 36 | power.h \ |
37 | storage.h \ | 37 | storage.h \ |
38 | qpemessagebox.h \ | 38 | qpemessagebox.h \ |
39 | backend/timeconversion.h \ | 39 | backend/timeconversion.h \ |
40 | qpedebug.h \ | 40 | qpedebug.h \ |
41 | qpemenubar.h \ | 41 | qpemenubar.h \ |
42 | qpetoolbar.h \ | 42 | qpetoolbar.h \ |
43 | backend/categories.h \ | 43 | backend/categories.h \ |
44 | backend/stringutil.h \ | 44 | backend/stringutil.h \ |
45 | backend/palmtopuid.h \ | 45 | backend/palmtopuid.h \ |
46 | backend/palmtoprecord.h \ | 46 | backend/palmtoprecord.h \ |
47 | backend/task.h \ | 47 | backend/task.h \ |
48 | backend/event.h \ | 48 | backend/event.h \ |
49 | backend/contact.h\ | 49 | backend/contact.h\ |
50 | categorymenu.h \ | 50 | categorymenu.h \ |
51 | categoryedit_p.h \ | 51 | categoryedit_p.h \ |
52 | categoryselect.h \ | 52 | categoryselect.h \ |
53 | categorywidget.h \ | 53 | categorywidget.h \ |
54 | ir.h \ | 54 | ir.h \ |
55 | backend/vobject_p.h \ | 55 | backend/vobject_p.h \ |
56 | findwidget_p.h \ | 56 | findwidget_p.h \ |
57 | finddialog.h \ | 57 | finddialog.h \ |
58 | lnkproperties.h | 58 | lnkproperties.h |
59 | |||
60 | SOURCES= calendar.cpp \ | 59 | SOURCES= calendar.cpp \ |
61 | global.cpp \ | 60 | global.cpp \ |
62 | xmlreader.cpp \ | 61 | xmlreader.cpp \ |
63 | mimetype.cpp \ | 62 | mimetype.cpp \ |
64 | menubutton.cpp \ | 63 | menubutton.cpp \ |
65 | network.cpp \ | 64 | network.cpp \ |
66 | networkinterface.cpp \ | 65 | networkinterface.cpp \ |
67 | filemanager.cpp \ | 66 | filemanager.cpp \ |
68 | fontmanager.cpp \ | 67 | fontmanager.cpp \ |
69 | qdawg.cpp \ | 68 | qdawg.cpp \ |
70 | datebookmonth.cpp \ | 69 | datebookmonth.cpp \ |
71 | fileselector.cpp \ | 70 | fileselector.cpp \ |
72 | imageedit.cpp \ | 71 | imageedit.cpp \ |
73 | resource.cpp \ | 72 | resource.cpp \ |
74 | qpedecoration_qws.cpp \ | 73 | qpedecoration_qws.cpp \ |
75 | qcopenvelope_qws.cpp \ | 74 | qcopenvelope_qws.cpp \ |
76 | qpeapplication.cpp \ | 75 | qpeapplication.cpp \ |
77 | qpestyle.cpp \ | 76 | qpestyle.cpp \ |
78 | qpedialog.cpp \ | 77 | qpedialog.cpp \ |
79 | lightstyle.cpp \ | 78 | lightstyle.cpp \ |
80 | config.cpp \ | 79 | config.cpp \ |
81 | applnk.cpp \ | 80 | applnk.cpp \ |
82 | sound.cpp \ | 81 | sound.cpp \ |
83 | tzselect.cpp \ | 82 | tzselect.cpp \ |
84 | qmath.c \ | 83 | qmath.c \ |
85 | datebookdb.cpp \ | 84 | datebookdb.cpp \ |
86 | alarmserver.cpp \ | 85 | alarmserver.cpp \ |
87 | password.cpp \ | 86 | password.cpp \ |
88 | process.cpp \ | 87 | process.cpp \ |
89 | process_unix.cpp \ | 88 | process_unix.cpp \ |
90 | timestring.cpp \ | 89 | timestring.cpp \ |
91 | fontdatabase.cpp \ | 90 | fontdatabase.cpp \ |
92 | power.cpp \ | 91 | power.cpp \ |
93 | storage.cpp \ | 92 | storage.cpp \ |
94 | qpemessagebox.cpp \ | 93 | qpemessagebox.cpp \ |
95 | backend/timeconversion.cpp \ | 94 | backend/timeconversion.cpp \ |
96 | qpedebug.cpp \ | 95 | qpedebug.cpp \ |
97 | qpemenubar.cpp \ | 96 | qpemenubar.cpp \ |
98 | qpetoolbar.cpp \ | 97 | qpetoolbar.cpp \ |
99 | backend/categories.cpp \ | 98 | backend/categories.cpp \ |
100 | backend/stringutil.cpp \ | 99 | backend/stringutil.cpp \ |
101 | backend/palmtoprecord.cpp \ | 100 | backend/palmtoprecord.cpp \ |
102 | backend/task.cpp \ | 101 | backend/task.cpp \ |
103 | backend/event.cpp \ | 102 | backend/event.cpp \ |
104 | backend/contact.cpp \ | 103 | backend/contact.cpp \ |
105 | categorymenu.cpp \ | 104 | categorymenu.cpp \ |
106 | categoryedit_p.cpp \ | 105 | categoryedit_p.cpp \ |
107 | categoryselect.cpp \ | 106 | categoryselect.cpp \ |
108 | categorywidget.cpp \ | 107 | categorywidget.cpp \ |
109 | ir.cpp \ | 108 | ir.cpp \ |
110 | backend/vcc_yacc.cpp \ | 109 | backend/vcc_yacc.cpp \ |
111 | backend/vobject.cpp \ | 110 | backend/vobject.cpp \ |
112 | findwidget_p.cpp \ | 111 | findwidget_p.cpp \ |
113 | finddialog.cpp \ | 112 | finddialog.cpp \ |
114 | lnkproperties.cpp | 113 | lnkproperties.cpp |
115 | |||
116 | # Qt 3 compatibility | 114 | # Qt 3 compatibility |
117 | qt2:HEADERS += quuid.h qcom.h qlibrary.h qlibrary_p.h | 115 | qt2:HEADERS += quuid.h qcom.h qlibrary.h qlibrary_p.h |
118 | qt2:SOURCES += quuid.cpp qlibrary.cpp qlibrary_unix.cpp | 116 | qt2:SOURCES += quuid.cpp qlibrary.cpp qlibrary_unix.cpp |
119 | |||
120 | INCLUDEPATH += $(OPIEDIR)/include backend | 117 | INCLUDEPATH += $(OPIEDIR)/include backend |
121 | LIBS += -ldl -lcrypt -lm | 118 | LIBS += -ldl -lcrypt -lm |
122 | |||
123 | INTERFACES = passwordbase_p.ui categoryeditbase_p.ui findwidgetbase_p.ui lnkpropertiesbase_p.ui | 119 | INTERFACES = passwordbase_p.ui categoryeditbase_p.ui findwidgetbase_p.ui lnkpropertiesbase_p.ui |
124 | |||
125 | TARGET = qpe | 120 | TARGET = qpe |
126 | DESTDIR = $(QTDIR)/lib$(PROJMAK) | 121 | DESTDIR = $(QTDIR)/lib$(PROJMAK) |
127 | # This is set by configure$(OPIEDIR). | 122 | # This is set by configure$(OPIEDIR). |
128 | VERSION = 1.5.0.1 | 123 | VERSION = 1.5.0.1 |
129 | 124 | ||
130 | TRANSLATIONS = ../i18n/de/libqpe.ts | 125 | TRANSLATIONS = ../i18n/de/libqpe.ts \ |
131 | TRANSLATIONS += ../i18n/es/libqpe.ts | 126 | ../i18n/en/libqpe.ts \ |
132 | TRANSLATIONS += ../i18n/pt/libqpe.ts | 127 | ../i18n/es/libqpe.ts \ |
133 | TRANSLATIONS += ../i18n/pt_BR/libqpe.ts | 128 | ../i18n/fr/libqpe.ts \ |
134 | TRANSLATIONS += ../i18n/en/libqpe.ts | 129 | ../i18n/hu/libqpe.ts \ |
135 | TRANSLATIONS += ../i18n/sl/libqpe.ts | 130 | ../i18n/ja/libqpe.ts \ |
136 | TRANSLATIONS += ../i18n/hu/libqpe.ts | 131 | ../i18n/ko/libqpe.ts \ |
137 | TRANSLATIONS += ../i18n/ja/libqpe.ts | 132 | ../i18n/no/libqpe.ts \ |
138 | TRANSLATIONS += ../i18n/ko/libqpe.ts | 133 | ../i18n/pl/libqpe.ts \ |
139 | TRANSLATIONS += ../i18n/pl/libqpe.ts | 134 | ../i18n/pt/libqpe.ts \ |
140 | TRANSLATIONS += ../i18n/fr/libqpe.ts | 135 | ../i18n/pt_BR/libqpe.ts \ |
141 | TRANSLATIONS += ../i18n/no/libqpe.ts | 136 | ../i18n/sl/libqpe.ts \ |
142 | TRANSLATIONS += ../i18n/zh_CN/libqpe.ts | 137 | ../i18n/zh_CN/libqpe.ts \ |
143 | TRANSLATIONS += ../i18n/zh_TW/libqpe.ts | 138 | ../i18n/zh_TW/libqpe.ts |
diff --git a/noncore/apps/advancedfm/advancedfm.pro b/noncore/apps/advancedfm/advancedfm.pro index a1ff9cb..e99ab12 100644 --- a/noncore/apps/advancedfm/advancedfm.pro +++ b/noncore/apps/advancedfm/advancedfm.pro | |||
@@ -1,28 +1,25 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = advancedfm.h inputDialog.h filePermissions.h output.h | 3 | HEADERS = advancedfm.h inputDialog.h filePermissions.h output.h |
4 | SOURCES = advancedfm.cpp inputDialog.cpp filePermissions.cpp output.cpp main.cpp | 4 | SOURCES = advancedfm.cpp inputDialog.cpp filePermissions.cpp output.cpp main.cpp |
5 | TARGET = advancedfm | 5 | TARGET = advancedfm |
6 | REQUIRES=medium-config | 6 | REQUIRES=medium-config |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += $(OPIEDIR)/include | 8 | DEPENDPATH += $(OPIEDIR)/include |
9 | DESTDIR = $(OPIEDIR)/bin | 9 | DESTDIR = $(OPIEDIR)/bin |
10 | LIBS += -lqpe -lopie | 10 | LIBS += -lqpe -lopie |
11 | 11 | ||
12 | 12 | TRANSLATIONS = ../../../i18n/de/advancedfm.ts \ | |
13 | 13 | ../../../i18n/en/advancedfm.ts \ | |
14 | TRANSLATIONS = ../../../i18n/de/advancedfm.ts | 14 | ../../../i18n/es/advancedfm.ts \ |
15 | TRANSLATIONS += ../../../i18n/en/advancedfm.ts | 15 | ../../../i18n/fr/advancedfm.ts \ |
16 | TRANSLATIONS += ../../../i18n/es/advancedfm.ts | 16 | ../../../i18n/hu/advancedfm.ts \ |
17 | TRANSLATIONS += ../../../i18n/fr/advancedfm.ts | 17 | ../../../i18n/ja/advancedfm.ts \ |
18 | TRANSLATIONS += ../../../i18n/hu/advancedfm.ts | 18 | ../../../i18n/ko/advancedfm.ts \ |
19 | TRANSLATIONS += ../../../i18n/ja/advancedfm.ts | 19 | ../../../i18n/no/advancedfm.ts \ |
20 | TRANSLATIONS += ../../../i18n/ko/advancedfm.ts | 20 | ../../../i18n/pl/advancedfm.ts \ |
21 | TRANSLATIONS += ../../../i18n/no/advancedfm.ts | 21 | ../../../i18n/pt/advancedfm.ts \ |
22 | TRANSLATIONS += ../../../i18n/pl/advancedfm.ts | 22 | ../../../i18n/pt_BR/advancedfm.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt/advancedfm.ts | 23 | ../../../i18n/sl/advancedfm.ts \ |
24 | TRANSLATIONS += ../../../i18n/pt_BR/advancedfm.ts | 24 | ../../../i18n/zh_CN/advancedfm.ts \ |
25 | TRANSLATIONS += ../../../i18n/sl/advancedfm.ts | 25 | ../../../i18n/zh_TW/advancedfm.ts |
26 | TRANSLATIONS += ../../../i18n/zh_CN/advancedfm.ts | ||
27 | TRANSLATIONS += ../../../i18n/zh_TW/advancedfm.ts | ||
28 | |||
diff --git a/noncore/apps/dictionary/dictionary.pro b/noncore/apps/dictionary/dictionary.pro index 71beb2d..687bd31 100644 --- a/noncore/apps/dictionary/dictionary.pro +++ b/noncore/apps/dictionary/dictionary.pro | |||
@@ -1,32 +1,25 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | |||
5 | HEADERS= dicttool.h | 4 | HEADERS= dicttool.h |
6 | SOURCES= dicttool.cpp main.cpp | 5 | SOURCES= dicttool.cpp main.cpp |
7 | |||
8 | INTERFACES= dicttoolbase.ui | 6 | INTERFACES= dicttoolbase.ui |
9 | |||
10 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
11 | DEPENDPATH+= $(OPIEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
12 | LIBS += -lqpe | 9 | LIBS += -lqpe |
13 | |||
14 | TARGET = dictionary | 10 | TARGET = dictionary |
15 | 11 | ||
16 | 12 | TRANSLATIONS = ../../../i18n/de/dictionary.ts \ | |
17 | 13 | ../../../i18n/en/dictionary.ts \ | |
18 | TRANSLATIONS = ../../../i18n/de/dictionary.ts | 14 | ../../../i18n/es/dictionary.ts \ |
19 | TRANSLATIONS += ../../../i18n/en/dictionary.ts | 15 | ../../../i18n/fr/dictionary.ts \ |
20 | TRANSLATIONS += ../../../i18n/es/dictionary.ts | 16 | ../../../i18n/hu/dictionary.ts \ |
21 | TRANSLATIONS += ../../../i18n/fr/dictionary.ts | 17 | ../../../i18n/ja/dictionary.ts \ |
22 | TRANSLATIONS += ../../../i18n/hu/dictionary.ts | 18 | ../../../i18n/ko/dictionary.ts \ |
23 | TRANSLATIONS += ../../../i18n/ja/dictionary.ts | 19 | ../../../i18n/no/dictionary.ts \ |
24 | TRANSLATIONS += ../../../i18n/ko/dictionary.ts | 20 | ../../../i18n/pl/dictionary.ts \ |
25 | TRANSLATIONS += ../../../i18n/no/dictionary.ts | 21 | ../../../i18n/pt/dictionary.ts \ |
26 | TRANSLATIONS += ../../../i18n/pl/dictionary.ts | 22 | ../../../i18n/pt_BR/dictionary.ts \ |
27 | TRANSLATIONS += ../../../i18n/pt/dictionary.ts | 23 | ../../../i18n/sl/dictionary.ts \ |
28 | TRANSLATIONS += ../../../i18n/pt_BR/dictionary.ts | 24 | ../../../i18n/zh_CN/dictionary.ts \ |
29 | TRANSLATIONS += ../../../i18n/sl/dictionary.ts | 25 | ../../../i18n/zh_TW/dictionary.ts |
30 | TRANSLATIONS += ../../../i18n/zh_CN/dictionary.ts | ||
31 | TRANSLATIONS += ../../../i18n/zh_TW/dictionary.ts | ||
32 | |||
diff --git a/noncore/apps/tableviewer/tableviewer.pro b/noncore/apps/tableviewer/tableviewer.pro index 126708a..d40e9fa 100644 --- a/noncore/apps/tableviewer/tableviewer.pro +++ b/noncore/apps/tableviewer/tableviewer.pro | |||
@@ -1,54 +1,51 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on debug | 2 | CONFIG = qt warn_on debug |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | SUBDIRS = db ui | 4 | SUBDIRS = db ui |
5 | HEADERS = tableviewer.h \ | 5 | HEADERS = tableviewer.h \ |
6 | ui/commonwidgets.h \ | 6 | ui/commonwidgets.h \ |
7 | ui/tvbrowseview.h \ | 7 | ui/tvbrowseview.h \ |
8 | ui/tvlistview.h \ | 8 | ui/tvlistview.h \ |
9 | ui/tvfilterview.h \ | 9 | ui/tvfilterview.h \ |
10 | ui/tveditview.h \ | 10 | ui/tveditview.h \ |
11 | ui/browsekeyentry.h \ | 11 | ui/browsekeyentry.h \ |
12 | ui/filterkeyentry.h \ | 12 | ui/filterkeyentry.h \ |
13 | ui/tvkeyedit.h \ | 13 | ui/tvkeyedit.h \ |
14 | db/datacache.h \ | 14 | db/datacache.h \ |
15 | db/common.h \ | 15 | db/common.h \ |
16 | db/xmlsource.h \ | 16 | db/xmlsource.h \ |
17 | db/csvsource.h | 17 | db/csvsource.h |
18 | SOURCES = main.cpp \ | 18 | SOURCES = main.cpp \ |
19 | tableviewer.cpp \ | 19 | tableviewer.cpp \ |
20 | ui/commonwidgets.cpp \ | 20 | ui/commonwidgets.cpp \ |
21 | ui/tvbrowseview.cpp \ | 21 | ui/tvbrowseview.cpp \ |
22 | ui/tvfilterview.cpp \ | 22 | ui/tvfilterview.cpp \ |
23 | ui/browsekeyentry.cpp \ | 23 | ui/browsekeyentry.cpp \ |
24 | ui/filterkeyentry.cpp \ | 24 | ui/filterkeyentry.cpp \ |
25 | ui/tvlistview.cpp \ | 25 | ui/tvlistview.cpp \ |
26 | ui/tveditview.cpp \ | 26 | ui/tveditview.cpp \ |
27 | ui/tvkeyedit.cpp \ | 27 | ui/tvkeyedit.cpp \ |
28 | db/datacache.cpp \ | 28 | db/datacache.cpp \ |
29 | db/xmlsource.cpp \ | 29 | db/xmlsource.cpp \ |
30 | db/csvsource.cpp \ | 30 | db/csvsource.cpp \ |
31 | db/common.cpp | 31 | db/common.cpp |
32 | INTERFACES= ui/tvkeyedit_gen.ui | 32 | INTERFACES= ui/tvkeyedit_gen.ui |
33 | TARGET = tableviewer | 33 | TARGET = tableviewer |
34 | INCLUDEPATH += $(OPIEDIR)/include | 34 | INCLUDEPATH += $(OPIEDIR)/include |
35 | DEPENDPATH += $(OPIEDIR)/include | 35 | DEPENDPATH += $(OPIEDIR)/include |
36 | LIBS += -lqpe | 36 | LIBS += -lqpe |
37 | 37 | ||
38 | 38 | TRANSLATIONS = ../../../i18n/de/tableviewer.ts \ | |
39 | 39 | ../../../i18n/en/tableviewer.ts \ | |
40 | TRANSLATIONS = ../../../i18n/de/tableviewer.ts | 40 | ../../../i18n/es/tableviewer.ts \ |
41 | TRANSLATIONS += ../../../i18n/en/tableviewer.ts | 41 | ../../../i18n/fr/tableviewer.ts \ |
42 | TRANSLATIONS += ../../../i18n/es/tableviewer.ts | 42 | ../../../i18n/hu/tableviewer.ts \ |
43 | TRANSLATIONS += ../../../i18n/fr/tableviewer.ts | 43 | ../../../i18n/ja/tableviewer.ts \ |
44 | TRANSLATIONS += ../../../i18n/hu/tableviewer.ts | 44 | ../../../i18n/ko/tableviewer.ts \ |
45 | TRANSLATIONS += ../../../i18n/ja/tableviewer.ts | 45 | ../../../i18n/no/tableviewer.ts \ |
46 | TRANSLATIONS += ../../../i18n/ko/tableviewer.ts | 46 | ../../../i18n/pl/tableviewer.ts \ |
47 | TRANSLATIONS += ../../../i18n/no/tableviewer.ts | 47 | ../../../i18n/pt/tableviewer.ts \ |
48 | TRANSLATIONS += ../../../i18n/pl/tableviewer.ts | 48 | ../../../i18n/pt_BR/tableviewer.ts \ |
49 | TRANSLATIONS += ../../../i18n/pt/tableviewer.ts | 49 | ../../../i18n/sl/tableviewer.ts \ |
50 | TRANSLATIONS += ../../../i18n/pt_BR/tableviewer.ts | 50 | ../../../i18n/zh_CN/tableviewer.ts \ |
51 | TRANSLATIONS += ../../../i18n/sl/tableviewer.ts | 51 | ../../../i18n/zh_TW/tableviewer.ts |
52 | TRANSLATIONS += ../../../i18n/zh_CN/tableviewer.ts | ||
53 | TRANSLATIONS += ../../../i18n/zh_TW/tableviewer.ts | ||
54 | |||
diff --git a/noncore/comm/keypebble/keypebble.pro b/noncore/comm/keypebble/keypebble.pro index ff92090..1b392af 100644 --- a/noncore/comm/keypebble/keypebble.pro +++ b/noncore/comm/keypebble/keypebble.pro | |||
@@ -1,55 +1,48 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | |||
3 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
4 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
5 | |||
6 | HEADERS = d3des.h \ | 4 | HEADERS = d3des.h \ |
7 | krfbbuffer.h \ | 5 | krfbbuffer.h \ |
8 | krfbcanvas.h \ | 6 | krfbcanvas.h \ |
9 | krfbconnection.h \ | 7 | krfbconnection.h \ |
10 | krfbdecoder.h \ | 8 | krfbdecoder.h \ |
11 | krfblogin.h \ | 9 | krfblogin.h \ |
12 | krfboptions.h \ | 10 | krfboptions.h \ |
13 | krfbserverinfo.h \ | 11 | krfbserverinfo.h \ |
14 | kvnc.h \ | 12 | kvnc.h \ |
15 | kvncconnectdlg.h \ | 13 | kvncconnectdlg.h \ |
16 | kvncoptionsdlg.h \ | 14 | kvncoptionsdlg.h \ |
17 | version.h \ | 15 | version.h \ |
18 | vncauth.h | 16 | vncauth.h |
19 | |||
20 | SOURCES = d3des.c \ | 17 | SOURCES = d3des.c \ |
21 | vncauth.c \ | 18 | vncauth.c \ |
22 | krfbbuffer.cpp \ | 19 | krfbbuffer.cpp \ |
23 | krfbcanvas.cpp \ | 20 | krfbcanvas.cpp \ |
24 | krfbconnection.cpp \ | 21 | krfbconnection.cpp \ |
25 | krfbdecoder.cpp \ | 22 | krfbdecoder.cpp \ |
26 | krfblogin.cpp \ | 23 | krfblogin.cpp \ |
27 | krfboptions.cpp \ | 24 | krfboptions.cpp \ |
28 | kvnc.cpp \ | 25 | kvnc.cpp \ |
29 | kvncconnectdlg.cpp \ | 26 | kvncconnectdlg.cpp \ |
30 | kvncoptionsdlg.cpp \ | 27 | kvncoptionsdlg.cpp \ |
31 | main.cpp | 28 | main.cpp |
32 | INTERFACES= vncoptionsbase.ui | 29 | INTERFACES= vncoptionsbase.ui |
33 | TARGET = keypebble | 30 | TARGET = keypebble |
34 | |||
35 | INCLUDEPATH += $(OPIEDIR)/include | 31 | INCLUDEPATH += $(OPIEDIR)/include |
36 | DEPENDPATH += $(OPIEDIR)/include | 32 | DEPENDPATH += $(OPIEDIR)/include |
37 | LIBS += -lqpe | 33 | LIBS += -lqpe |
38 | 34 | ||
39 | 35 | TRANSLATIONS = ../../../i18n/de/keypebble.ts \ | |
40 | 36 | ../../../i18n/en/keypebble.ts \ | |
41 | TRANSLATIONS = ../../../i18n/de/keypebble.ts | 37 | ../../../i18n/es/keypebble.ts \ |
42 | TRANSLATIONS += ../../../i18n/en/keypebble.ts | 38 | ../../../i18n/fr/keypebble.ts \ |
43 | TRANSLATIONS += ../../../i18n/es/keypebble.ts | 39 | ../../../i18n/hu/keypebble.ts \ |
44 | TRANSLATIONS += ../../../i18n/fr/keypebble.ts | 40 | ../../../i18n/ja/keypebble.ts \ |
45 | TRANSLATIONS += ../../../i18n/hu/keypebble.ts | 41 | ../../../i18n/ko/keypebble.ts \ |
46 | TRANSLATIONS += ../../../i18n/ja/keypebble.ts | 42 | ../../../i18n/no/keypebble.ts \ |
47 | TRANSLATIONS += ../../../i18n/ko/keypebble.ts | 43 | ../../../i18n/pl/keypebble.ts \ |
48 | TRANSLATIONS += ../../../i18n/no/keypebble.ts | 44 | ../../../i18n/pt/keypebble.ts \ |
49 | TRANSLATIONS += ../../../i18n/pl/keypebble.ts | 45 | ../../../i18n/pt_BR/keypebble.ts \ |
50 | TRANSLATIONS += ../../../i18n/pt/keypebble.ts | 46 | ../../../i18n/sl/keypebble.ts \ |
51 | TRANSLATIONS += ../../../i18n/pt_BR/keypebble.ts | 47 | ../../../i18n/zh_CN/keypebble.ts \ |
52 | TRANSLATIONS += ../../../i18n/sl/keypebble.ts | 48 | ../../../i18n/zh_TW/keypebble.ts |
53 | TRANSLATIONS += ../../../i18n/zh_CN/keypebble.ts | ||
54 | TRANSLATIONS += ../../../i18n/zh_TW/keypebble.ts | ||
55 | |||
diff --git a/noncore/games/chess/chess.pro b/noncore/games/chess/chess.pro index 1307b66..dd0f889 100644 --- a/noncore/games/chess/chess.pro +++ b/noncore/games/chess/chess.pro | |||
@@ -1,32 +1,29 @@ | |||
1 | SOURCES+= chess.cpp main.cpp | 1 | SOURCES+= chess.cpp main.cpp |
2 | HEADERS+= chess.h | 2 | HEADERS+= chess.h |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | TARGET = chess | 4 | TARGET = chess |
5 | DEPENDPATH+= $(OPIEDIR)/include | 5 | DEPENDPATH+= $(OPIEDIR)/include |
6 | INTERFACES = mainwindow.ui | 6 | INTERFACES = mainwindow.ui |
7 | IMAGES= images/new.png images/repeat.png images/txt.png images/back.png | 7 | IMAGES= images/new.png images/repeat.png images/txt.png images/back.png |
8 | TEMPLATE=app | 8 | TEMPLATE=app |
9 | CONFIG+= qt warn_on release | 9 | CONFIG+= qt warn_on release |
10 | INCLUDEPATH += $(OPIEDIR)/include | 10 | INCLUDEPATH += $(OPIEDIR)/include |
11 | LIBS+= -lqpe | 11 | LIBS+= -lqpe |
12 | DBFILE= chess.db | 12 | DBFILE= chess.db |
13 | LANGUAGE= C++ | 13 | LANGUAGE= C++ |
14 | CPP_ALWAYS_CREATE_SOURCE= TRUE | 14 | CPP_ALWAYS_CREATE_SOURCE= TRUE |
15 | 15 | ||
16 | 16 | TRANSLATIONS = ../../../i18n/de/chess.ts \ | |
17 | 17 | ../../../i18n/en/chess.ts \ | |
18 | TRANSLATIONS = ../../../i18n/de/chess.ts | 18 | ../../../i18n/es/chess.ts \ |
19 | TRANSLATIONS += ../../../i18n/en/chess.ts | 19 | ../../../i18n/fr/chess.ts \ |
20 | TRANSLATIONS += ../../../i18n/es/chess.ts | 20 | ../../../i18n/hu/chess.ts \ |
21 | TRANSLATIONS += ../../../i18n/fr/chess.ts | 21 | ../../../i18n/ja/chess.ts \ |
22 | TRANSLATIONS += ../../../i18n/hu/chess.ts | 22 | ../../../i18n/ko/chess.ts \ |
23 | TRANSLATIONS += ../../../i18n/ja/chess.ts | 23 | ../../../i18n/no/chess.ts \ |
24 | TRANSLATIONS += ../../../i18n/ko/chess.ts | 24 | ../../../i18n/pl/chess.ts \ |
25 | TRANSLATIONS += ../../../i18n/no/chess.ts | 25 | ../../../i18n/pt/chess.ts \ |
26 | TRANSLATIONS += ../../../i18n/pl/chess.ts | 26 | ../../../i18n/pt_BR/chess.ts \ |
27 | TRANSLATIONS += ../../../i18n/pt/chess.ts | 27 | ../../../i18n/sl/chess.ts \ |
28 | TRANSLATIONS += ../../../i18n/pt_BR/chess.ts | 28 | ../../../i18n/zh_CN/chess.ts \ |
29 | TRANSLATIONS += ../../../i18n/sl/chess.ts | 29 | ../../../i18n/zh_TW/chess.ts |
30 | TRANSLATIONS += ../../../i18n/zh_CN/chess.ts | ||
31 | TRANSLATIONS += ../../../i18n/zh_TW/chess.ts | ||
32 | |||
diff --git a/noncore/games/fifteen/fifteen.pro b/noncore/games/fifteen/fifteen.pro index 7657823..a8af31a 100644 --- a/noncore/games/fifteen/fifteen.pro +++ b/noncore/games/fifteen/fifteen.pro | |||
@@ -1,28 +1,25 @@ | |||
1 | DESTDIR = $(OPIEDIR)/bin | 1 | DESTDIR = $(OPIEDIR)/bin |
2 | TEMPLATE= app | 2 | TEMPLATE= app |
3 | CONFIG = qt warn_on release | 3 | CONFIG = qt warn_on release |
4 | HEADERS = fifteen.h | 4 | HEADERS = fifteen.h |
5 | SOURCES = fifteen.cpp \ | 5 | SOURCES = fifteen.cpp \ |
6 | main.cpp | 6 | main.cpp |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(OPIEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | TARGET = fifteen | 10 | TARGET = fifteen |
11 | 11 | ||
12 | 12 | TRANSLATIONS = ../../../i18n/de/fifteen.ts \ | |
13 | 13 | ../../../i18n/en/fifteen.ts \ | |
14 | TRANSLATIONS = ../../../i18n/de/fifteen.ts | 14 | ../../../i18n/es/fifteen.ts \ |
15 | TRANSLATIONS += ../../../i18n/en/fifteen.ts | 15 | ../../../i18n/fr/fifteen.ts \ |
16 | TRANSLATIONS += ../../../i18n/es/fifteen.ts | 16 | ../../../i18n/hu/fifteen.ts \ |
17 | TRANSLATIONS += ../../../i18n/fr/fifteen.ts | 17 | ../../../i18n/ja/fifteen.ts \ |
18 | TRANSLATIONS += ../../../i18n/hu/fifteen.ts | 18 | ../../../i18n/ko/fifteen.ts \ |
19 | TRANSLATIONS += ../../../i18n/ja/fifteen.ts | 19 | ../../../i18n/no/fifteen.ts \ |
20 | TRANSLATIONS += ../../../i18n/ko/fifteen.ts | 20 | ../../../i18n/pl/fifteen.ts \ |
21 | TRANSLATIONS += ../../../i18n/no/fifteen.ts | 21 | ../../../i18n/pt/fifteen.ts \ |
22 | TRANSLATIONS += ../../../i18n/pl/fifteen.ts | 22 | ../../../i18n/pt_BR/fifteen.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt/fifteen.ts | 23 | ../../../i18n/sl/fifteen.ts \ |
24 | TRANSLATIONS += ../../../i18n/pt_BR/fifteen.ts | 24 | ../../../i18n/zh_CN/fifteen.ts \ |
25 | TRANSLATIONS += ../../../i18n/sl/fifteen.ts | 25 | ../../../i18n/zh_TW/fifteen.ts |
26 | TRANSLATIONS += ../../../i18n/zh_CN/fifteen.ts | ||
27 | TRANSLATIONS += ../../../i18n/zh_TW/fifteen.ts | ||
28 | |||
diff --git a/noncore/games/go/go.pro b/noncore/games/go/go.pro index 76cc4f2..11f2098 100644 --- a/noncore/games/go/go.pro +++ b/noncore/games/go/go.pro | |||
@@ -1,35 +1,32 @@ | |||
1 | DESTDIR = $(OPIEDIR)/bin | 1 | DESTDIR = $(OPIEDIR)/bin |
2 | TEMPLATE= app | 2 | TEMPLATE= app |
3 | CONFIG = qt warn_on release | 3 | CONFIG = qt warn_on release |
4 | HEADERS = amigo.h \ | 4 | HEADERS = amigo.h \ |
5 | go.h \ | 5 | go.h \ |
6 | goplayutils.h \ | 6 | goplayutils.h \ |
7 | gowidget.h | 7 | gowidget.h |
8 | SOURCES = amigo.c \ | 8 | SOURCES = amigo.c \ |
9 | goplayer.c \ | 9 | goplayer.c \ |
10 | goplayutils.c \ | 10 | goplayutils.c \ |
11 | killable.c \ | 11 | killable.c \ |
12 | gowidget.cpp \ | 12 | gowidget.cpp \ |
13 | main.cpp | 13 | main.cpp |
14 | INCLUDEPATH += $(OPIEDIR)/include | 14 | INCLUDEPATH += $(OPIEDIR)/include |
15 | DEPENDPATH+= $(OPIEDIR)/include | 15 | DEPENDPATH+= $(OPIEDIR)/include |
16 | LIBS += -lqpe | 16 | LIBS += -lqpe |
17 | TARGET = go | 17 | TARGET = go |
18 | 18 | ||
19 | 19 | TRANSLATIONS = ../../../i18n/de/go.ts \ | |
20 | 20 | ../../../i18n/en/go.ts \ | |
21 | TRANSLATIONS = ../../../i18n/de/go.ts | 21 | ../../../i18n/es/go.ts \ |
22 | TRANSLATIONS += ../../../i18n/en/go.ts | 22 | ../../../i18n/fr/go.ts \ |
23 | TRANSLATIONS += ../../../i18n/es/go.ts | 23 | ../../../i18n/hu/go.ts \ |
24 | TRANSLATIONS += ../../../i18n/fr/go.ts | 24 | ../../../i18n/ja/go.ts \ |
25 | TRANSLATIONS += ../../../i18n/hu/go.ts | 25 | ../../../i18n/ko/go.ts \ |
26 | TRANSLATIONS += ../../../i18n/ja/go.ts | 26 | ../../../i18n/no/go.ts \ |
27 | TRANSLATIONS += ../../../i18n/ko/go.ts | 27 | ../../../i18n/pl/go.ts \ |
28 | TRANSLATIONS += ../../../i18n/no/go.ts | 28 | ../../../i18n/pt/go.ts \ |
29 | TRANSLATIONS += ../../../i18n/pl/go.ts | 29 | ../../../i18n/pt_BR/go.ts \ |
30 | TRANSLATIONS += ../../../i18n/pt/go.ts | 30 | ../../../i18n/sl/go.ts \ |
31 | TRANSLATIONS += ../../../i18n/pt_BR/go.ts | 31 | ../../../i18n/zh_CN/go.ts \ |
32 | TRANSLATIONS += ../../../i18n/sl/go.ts | 32 | ../../../i18n/zh_TW/go.ts |
33 | TRANSLATIONS += ../../../i18n/zh_CN/go.ts | ||
34 | TRANSLATIONS += ../../../i18n/zh_TW/go.ts | ||
35 | |||
diff --git a/noncore/games/kbill/kbill.pro b/noncore/games/kbill/kbill.pro index a4ea7da..e0f6d1c 100644 --- a/noncore/games/kbill/kbill.pro +++ b/noncore/games/kbill/kbill.pro | |||
@@ -1,31 +1,29 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | HEADERS = kbill.h field.h Bucket.h Cable.h Computer.h Game.h Horde.h \ | 3 | HEADERS = kbill.h field.h Bucket.h Cable.h Computer.h Game.h Horde.h \ |
4 | Library.h MCursor.h Monster.h Network.h Picture.h Spark.h Strings.h \ | 4 | Library.h MCursor.h Monster.h Network.h Picture.h Spark.h Strings.h \ |
5 | UI.h objects.h inputbox.h | 5 | UI.h objects.h inputbox.h |
6 | SOURCES = field.cpp Bucket.cc Cable.cc Computer.cc Game.cc Horde.cc \ | 6 | SOURCES = field.cpp Bucket.cc Cable.cc Computer.cc Game.cc Horde.cc \ |
7 | Library.cc MCursor.cc Monster.cc Network.cc Picture.cc \ | 7 | Library.cc MCursor.cc Monster.cc Network.cc Picture.cc \ |
8 | Spark.cc UI.cpp inputbox.cpp kbill.cpp | 8 | Spark.cc UI.cpp inputbox.cpp kbill.cpp |
9 | INTERFACES = helpdialog.ui | 9 | INTERFACES = helpdialog.ui |
10 | TARGET = kbill | 10 | TARGET = kbill |
11 | INCLUDEPATH+= $(OPIEDIR)/include | 11 | INCLUDEPATH+= $(OPIEDIR)/include |
12 | DEPENDPATH+= $(OPIEDIR)/include | 12 | DEPENDPATH+= $(OPIEDIR)/include |
13 | LIBS += -lqpe | 13 | LIBS += -lqpe |
14 | DESTDIR = $(OPIEDIR)/bin | 14 | DESTDIR = $(OPIEDIR)/bin |
15 | 15 | ||
16 | 16 | TRANSLATIONS = ../../../i18n/de/kbill.ts \ | |
17 | TRANSLATIONS = ../../../i18n/de/kbill.ts | 17 | ../../../i18n/en/kbill.ts \ |
18 | TRANSLATIONS += ../../../i18n/en/kbill.ts | 18 | ../../../i18n/es/kbill.ts \ |
19 | TRANSLATIONS += ../../../i18n/es/kbill.ts | 19 | ../../../i18n/fr/kbill.ts \ |
20 | TRANSLATIONS += ../../../i18n/fr/kbill.ts | 20 | ../../../i18n/hu/kbill.ts \ |
21 | TRANSLATIONS += ../../../i18n/hu/kbill.ts | 21 | ../../../i18n/ja/kbill.ts \ |
22 | TRANSLATIONS += ../../../i18n/ja/kbill.ts | 22 | ../../../i18n/ko/kbill.ts \ |
23 | TRANSLATIONS += ../../../i18n/ko/kbill.ts | 23 | ../../../i18n/no/kbill.ts \ |
24 | TRANSLATIONS += ../../../i18n/no/kbill.ts | 24 | ../../../i18n/pl/kbill.ts \ |
25 | TRANSLATIONS += ../../../i18n/pl/kbill.ts | 25 | ../../../i18n/pt/kbill.ts \ |
26 | TRANSLATIONS += ../../../i18n/pt/kbill.ts | 26 | ../../../i18n/pt_BR/kbill.ts \ |
27 | TRANSLATIONS += ../../../i18n/pt_BR/kbill.ts | 27 | ../../../i18n/sl/kbill.ts \ |
28 | TRANSLATIONS += ../../../i18n/sl/kbill.ts | 28 | ../../../i18n/zh_CN/kbill.ts \ |
29 | TRANSLATIONS += ../../../i18n/zh_CN/kbill.ts | 29 | ../../../i18n/zh_TW/kbill.ts |
30 | TRANSLATIONS += ../../../i18n/zh_TW/kbill.ts | ||
31 | |||
diff --git a/noncore/games/kcheckers/kcheckers.pro b/noncore/games/kcheckers/kcheckers.pro index 1801979..9358e99 100644 --- a/noncore/games/kcheckers/kcheckers.pro +++ b/noncore/games/kcheckers/kcheckers.pro | |||
@@ -1,36 +1,33 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | HEADERS = checkers.h \ | 3 | HEADERS = checkers.h \ |
4 | echeckers.h \ | 4 | echeckers.h \ |
5 | field.h \ | 5 | field.h \ |
6 | kcheckers.h \ | 6 | kcheckers.h \ |
7 | rcheckers.h | 7 | rcheckers.h |
8 | SOURCES = checkers.cpp \ | 8 | SOURCES = checkers.cpp \ |
9 | echeckers.cpp \ | 9 | echeckers.cpp \ |
10 | field.cpp \ | 10 | field.cpp \ |
11 | kcheckers.cpp \ | 11 | kcheckers.cpp \ |
12 | main.cpp \ | 12 | main.cpp \ |
13 | rcheckers.cpp | 13 | rcheckers.cpp |
14 | INTERFACES= | 14 | INTERFACES= |
15 | INCLUDEPATH+= $(OPIEDIR)/include | 15 | INCLUDEPATH+= $(OPIEDIR)/include |
16 | LIBS += -lqpe | 16 | LIBS += -lqpe |
17 | DESTDIR = $(OPIEDIR)/bin | 17 | DESTDIR = $(OPIEDIR)/bin |
18 | TARGET = kcheckers | 18 | TARGET = kcheckers |
19 | 19 | ||
20 | 20 | TRANSLATIONS = ../../../i18n/de/kcheckers.ts \ | |
21 | 21 | ../../../i18n/en/kcheckers.ts \ | |
22 | TRANSLATIONS = ../../../i18n/de/kcheckers.ts | 22 | ../../../i18n/es/kcheckers.ts \ |
23 | TRANSLATIONS += ../../../i18n/en/kcheckers.ts | 23 | ../../../i18n/fr/kcheckers.ts \ |
24 | TRANSLATIONS += ../../../i18n/es/kcheckers.ts | 24 | ../../../i18n/hu/kcheckers.ts \ |
25 | TRANSLATIONS += ../../../i18n/fr/kcheckers.ts | 25 | ../../../i18n/ja/kcheckers.ts \ |
26 | TRANSLATIONS += ../../../i18n/hu/kcheckers.ts | 26 | ../../../i18n/ko/kcheckers.ts \ |
27 | TRANSLATIONS += ../../../i18n/ja/kcheckers.ts | 27 | ../../../i18n/no/kcheckers.ts \ |
28 | TRANSLATIONS += ../../../i18n/ko/kcheckers.ts | 28 | ../../../i18n/pl/kcheckers.ts \ |
29 | TRANSLATIONS += ../../../i18n/no/kcheckers.ts | 29 | ../../../i18n/pt/kcheckers.ts \ |
30 | TRANSLATIONS += ../../../i18n/pl/kcheckers.ts | 30 | ../../../i18n/pt_BR/kcheckers.ts \ |
31 | TRANSLATIONS += ../../../i18n/pt/kcheckers.ts | 31 | ../../../i18n/sl/kcheckers.ts \ |
32 | TRANSLATIONS += ../../../i18n/pt_BR/kcheckers.ts | 32 | ../../../i18n/zh_CN/kcheckers.ts \ |
33 | TRANSLATIONS += ../../../i18n/sl/kcheckers.ts | 33 | ../../../i18n/zh_TW/kcheckers.ts |
34 | TRANSLATIONS += ../../../i18n/zh_CN/kcheckers.ts | ||
35 | TRANSLATIONS += ../../../i18n/zh_TW/kcheckers.ts | ||
36 | |||
diff --git a/noncore/games/kpacman/kpacman.pro b/noncore/games/kpacman/kpacman.pro index 3ce09ab..7f3c7f4 100644 --- a/noncore/games/kpacman/kpacman.pro +++ b/noncore/games/kpacman/kpacman.pro | |||
@@ -1,59 +1,56 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | #CONFIG = qt warn_on debug | 2 | #CONFIG = qt warn_on debug |
3 | CONFIG = qt warn_on release | 3 | CONFIG = qt warn_on release |
4 | #TMAKE_CXXFLAGS+= | 4 | #TMAKE_CXXFLAGS+= |
5 | HEADERS = kpacmanwidget.h \ | 5 | HEADERS = kpacmanwidget.h \ |
6 | referee.h \ | 6 | referee.h \ |
7 | status.h \ | 7 | status.h \ |
8 | painter.h \ | 8 | painter.h \ |
9 | score.h \ | 9 | score.h \ |
10 | pacman.h \ | 10 | pacman.h \ |
11 | monster.h \ | 11 | monster.h \ |
12 | keys.h \ | 12 | keys.h \ |
13 | fruit.h \ | 13 | fruit.h \ |
14 | energizer.h \ | 14 | energizer.h \ |
15 | board.h \ | 15 | board.h \ |
16 | bitfont.h \ | 16 | bitfont.h \ |
17 | kpacman.h \ | 17 | kpacman.h \ |
18 | bitmaps.h \ | 18 | bitmaps.h \ |
19 | colors.h \ | 19 | colors.h \ |
20 | config.h \ | 20 | config.h \ |
21 | portable.h | 21 | portable.h |
22 | SOURCES = kpacmanwidget.cpp \ | 22 | SOURCES = kpacmanwidget.cpp \ |
23 | referee.cpp \ | 23 | referee.cpp \ |
24 | status.cpp \ | 24 | status.cpp \ |
25 | painter.cpp \ | 25 | painter.cpp \ |
26 | score.cpp \ | 26 | score.cpp \ |
27 | pacman.cpp \ | 27 | pacman.cpp \ |
28 | monster.cpp \ | 28 | monster.cpp \ |
29 | keys.cpp \ | 29 | keys.cpp \ |
30 | fruit.cpp \ | 30 | fruit.cpp \ |
31 | energizer.cpp \ | 31 | energizer.cpp \ |
32 | board.cpp \ | 32 | board.cpp \ |
33 | bitfont.cpp \ | 33 | bitfont.cpp \ |
34 | kpacman.cpp \ | 34 | kpacman.cpp \ |
35 | config.cpp \ | 35 | config.cpp \ |
36 | main.cpp | 36 | main.cpp |
37 | |||
38 | INCLUDEPATH+= $(OPIEDIR)/include | 37 | INCLUDEPATH+= $(OPIEDIR)/include |
39 | DEPENDPATH+= $(OPIEDIR)/include | 38 | DEPENDPATH+= $(OPIEDIR)/include |
40 | LIBS += -lqpe | 39 | LIBS += -lqpe |
41 | DESTDIR = $(OPIEDIR)/bin | 40 | DESTDIR = $(OPIEDIR)/bin |
42 | TARGET = kpacman | 41 | TARGET = kpacman |
43 | 42 | ||
44 | 43 | TRANSLATIONS = ../../../i18n/de/kpacman.ts \ | |
45 | TRANSLATIONS = ../../../i18n/de/kpacman.ts | 44 | ../../../i18n/en/kpacman.ts \ |
46 | TRANSLATIONS += ../../../i18n/en/kpacman.ts | 45 | ../../../i18n/es/kpacman.ts \ |
47 | TRANSLATIONS += ../../../i18n/es/kpacman.ts | 46 | ../../../i18n/fr/kpacman.ts \ |
48 | TRANSLATIONS += ../../../i18n/fr/kpacman.ts | 47 | ../../../i18n/hu/kpacman.ts \ |
49 | TRANSLATIONS += ../../../i18n/hu/kpacman.ts | 48 | ../../../i18n/ja/kpacman.ts \ |
50 | TRANSLATIONS += ../../../i18n/ja/kpacman.ts | 49 | ../../../i18n/ko/kpacman.ts \ |
51 | TRANSLATIONS += ../../../i18n/ko/kpacman.ts | 50 | ../../../i18n/no/kpacman.ts \ |
52 | TRANSLATIONS += ../../../i18n/no/kpacman.ts | 51 | ../../../i18n/pl/kpacman.ts \ |
53 | TRANSLATIONS += ../../../i18n/pl/kpacman.ts | 52 | ../../../i18n/pt/kpacman.ts \ |
54 | TRANSLATIONS += ../../../i18n/pt/kpacman.ts | 53 | ../../../i18n/pt_BR/kpacman.ts \ |
55 | TRANSLATIONS += ../../../i18n/pt_BR/kpacman.ts | 54 | ../../../i18n/sl/kpacman.ts \ |
56 | TRANSLATIONS += ../../../i18n/sl/kpacman.ts | 55 | ../../../i18n/zh_CN/kpacman.ts \ |
57 | TRANSLATIONS += ../../../i18n/zh_CN/kpacman.ts | 56 | ../../../i18n/zh_TW/kpacman.ts |
58 | TRANSLATIONS += ../../../i18n/zh_TW/kpacman.ts | ||
59 | |||
diff --git a/noncore/games/mindbreaker/mindbreaker.pro b/noncore/games/mindbreaker/mindbreaker.pro index 1173cd2..60aa660 100644 --- a/noncore/games/mindbreaker/mindbreaker.pro +++ b/noncore/games/mindbreaker/mindbreaker.pro | |||
@@ -1,28 +1,25 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = mindbreaker.h | 4 | HEADERS = mindbreaker.h |
5 | SOURCES = main.cpp \ | 5 | SOURCES = main.cpp \ |
6 | mindbreaker.cpp | 6 | mindbreaker.cpp |
7 | TARGET = mindbreaker | 7 | TARGET = mindbreaker |
8 | INCLUDEPATH += $(OPIEDIR)/include | 8 | INCLUDEPATH += $(OPIEDIR)/include |
9 | DEPENDPATH += $(OPIEDIR)/include | 9 | DEPENDPATH += $(OPIEDIR)/include |
10 | LIBS += -lqpe | 10 | LIBS += -lqpe |
11 | 11 | ||
12 | 12 | TRANSLATIONS = ../../../i18n/de/mindbreaker.ts \ | |
13 | 13 | ../../../i18n/en/mindbreaker.ts \ | |
14 | TRANSLATIONS = ../../../i18n/de/mindbreaker.ts | 14 | ../../../i18n/es/mindbreaker.ts \ |
15 | TRANSLATIONS += ../../../i18n/en/mindbreaker.ts | 15 | ../../../i18n/fr/mindbreaker.ts \ |
16 | TRANSLATIONS += ../../../i18n/es/mindbreaker.ts | 16 | ../../../i18n/hu/mindbreaker.ts \ |
17 | TRANSLATIONS += ../../../i18n/fr/mindbreaker.ts | 17 | ../../../i18n/ja/mindbreaker.ts \ |
18 | TRANSLATIONS += ../../../i18n/hu/mindbreaker.ts | 18 | ../../../i18n/ko/mindbreaker.ts \ |
19 | TRANSLATIONS += ../../../i18n/ja/mindbreaker.ts | 19 | ../../../i18n/no/mindbreaker.ts \ |
20 | TRANSLATIONS += ../../../i18n/ko/mindbreaker.ts | 20 | ../../../i18n/pl/mindbreaker.ts \ |
21 | TRANSLATIONS += ../../../i18n/no/mindbreaker.ts | 21 | ../../../i18n/pt/mindbreaker.ts \ |
22 | TRANSLATIONS += ../../../i18n/pl/mindbreaker.ts | 22 | ../../../i18n/pt_BR/mindbreaker.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt/mindbreaker.ts | 23 | ../../../i18n/sl/mindbreaker.ts \ |
24 | TRANSLATIONS += ../../../i18n/pt_BR/mindbreaker.ts | 24 | ../../../i18n/zh_CN/mindbreaker.ts \ |
25 | TRANSLATIONS += ../../../i18n/sl/mindbreaker.ts | 25 | ../../../i18n/zh_TW/mindbreaker.ts |
26 | TRANSLATIONS += ../../../i18n/zh_CN/mindbreaker.ts | ||
27 | TRANSLATIONS += ../../../i18n/zh_TW/mindbreaker.ts | ||
28 | |||
diff --git a/noncore/games/minesweep/minesweep.pro b/noncore/games/minesweep/minesweep.pro index 8453a74..05b1ab4 100644 --- a/noncore/games/minesweep/minesweep.pro +++ b/noncore/games/minesweep/minesweep.pro | |||
@@ -1,30 +1,27 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = minefield.h \ | 4 | HEADERS = minefield.h \ |
5 | minesweep.h | 5 | minesweep.h |
6 | SOURCES = main.cpp \ | 6 | SOURCES = main.cpp \ |
7 | minefield.cpp \ | 7 | minefield.cpp \ |
8 | minesweep.cpp | 8 | minesweep.cpp |
9 | INCLUDEPATH += $(OPIEDIR)/include | 9 | INCLUDEPATH += $(OPIEDIR)/include |
10 | DEPENDPATH+= $(OPIEDIR)/include | 10 | DEPENDPATH+= $(OPIEDIR)/include |
11 | LIBS += -lqpe | 11 | LIBS += -lqpe |
12 | INTERFACES= | 12 | INTERFACES= |
13 | 13 | ||
14 | 14 | TRANSLATIONS = ../../../i18n/de/minesweep.pro.in.ts \ | |
15 | 15 | ../../../i18n/en/minesweep.pro.in.ts \ | |
16 | TRANSLATIONS = ../../../i18n/de/minesweep.pro.in.ts | 16 | ../../../i18n/es/minesweep.pro.in.ts \ |
17 | TRANSLATIONS += ../../../i18n/en/minesweep.pro.in.ts | 17 | ../../../i18n/fr/minesweep.pro.in.ts \ |
18 | TRANSLATIONS += ../../../i18n/es/minesweep.pro.in.ts | 18 | ../../../i18n/hu/minesweep.pro.in.ts \ |
19 | TRANSLATIONS += ../../../i18n/fr/minesweep.pro.in.ts | 19 | ../../../i18n/ja/minesweep.pro.in.ts \ |
20 | TRANSLATIONS += ../../../i18n/hu/minesweep.pro.in.ts | 20 | ../../../i18n/ko/minesweep.pro.in.ts \ |
21 | TRANSLATIONS += ../../../i18n/ja/minesweep.pro.in.ts | 21 | ../../../i18n/no/minesweep.pro.in.ts \ |
22 | TRANSLATIONS += ../../../i18n/ko/minesweep.pro.in.ts | 22 | ../../../i18n/pl/minesweep.pro.in.ts \ |
23 | TRANSLATIONS += ../../../i18n/no/minesweep.pro.in.ts | 23 | ../../../i18n/pt/minesweep.pro.in.ts \ |
24 | TRANSLATIONS += ../../../i18n/pl/minesweep.pro.in.ts | 24 | ../../../i18n/pt_BR/minesweep.pro.in.ts \ |
25 | TRANSLATIONS += ../../../i18n/pt/minesweep.pro.in.ts | 25 | ../../../i18n/sl/minesweep.pro.in.ts \ |
26 | TRANSLATIONS += ../../../i18n/pt_BR/minesweep.pro.in.ts | 26 | ../../../i18n/zh_CN/minesweep.pro.in.ts \ |
27 | TRANSLATIONS += ../../../i18n/sl/minesweep.pro.in.ts | 27 | ../../../i18n/zh_TW/minesweep.pro.in.ts |
28 | TRANSLATIONS += ../../../i18n/zh_CN/minesweep.pro.in.ts | ||
29 | TRANSLATIONS += ../../../i18n/zh_TW/minesweep.pro.in.ts | ||
30 | |||
diff --git a/noncore/games/parashoot/parashoot.pro b/noncore/games/parashoot/parashoot.pro index 5977024..b601ae1 100644 --- a/noncore/games/parashoot/parashoot.pro +++ b/noncore/games/parashoot/parashoot.pro | |||
@@ -1,27 +1,24 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = interface.h man.h cannon.h base.h bullet.h helicopter.h | 4 | HEADERS = interface.h man.h cannon.h base.h bullet.h helicopter.h |
5 | SOURCES = main.cpp interface.cpp man.cpp cannon.cpp base.cpp bullet.cpp helicopter.cpp | 5 | SOURCES = main.cpp interface.cpp man.cpp cannon.cpp base.cpp bullet.cpp helicopter.cpp |
6 | TARGET = parashoot | 6 | TARGET = parashoot |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(OPIEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | 10 | ||
11 | 11 | TRANSLATIONS = ../../../i18n/de/parashoot.ts \ | |
12 | 12 | ../../../i18n/en/parashoot.ts \ | |
13 | TRANSLATIONS = ../../../i18n/de/parashoot.ts | 13 | ../../../i18n/es/parashoot.ts \ |
14 | TRANSLATIONS += ../../../i18n/en/parashoot.ts | 14 | ../../../i18n/fr/parashoot.ts \ |
15 | TRANSLATIONS += ../../../i18n/es/parashoot.ts | 15 | ../../../i18n/hu/parashoot.ts \ |
16 | TRANSLATIONS += ../../../i18n/fr/parashoot.ts | 16 | ../../../i18n/ja/parashoot.ts \ |
17 | TRANSLATIONS += ../../../i18n/hu/parashoot.ts | 17 | ../../../i18n/ko/parashoot.ts \ |
18 | TRANSLATIONS += ../../../i18n/ja/parashoot.ts | 18 | ../../../i18n/no/parashoot.ts \ |
19 | TRANSLATIONS += ../../../i18n/ko/parashoot.ts | 19 | ../../../i18n/pl/parashoot.ts \ |
20 | TRANSLATIONS += ../../../i18n/no/parashoot.ts | 20 | ../../../i18n/pt/parashoot.ts \ |
21 | TRANSLATIONS += ../../../i18n/pl/parashoot.ts | 21 | ../../../i18n/pt_BR/parashoot.ts \ |
22 | TRANSLATIONS += ../../../i18n/pt/parashoot.ts | 22 | ../../../i18n/sl/parashoot.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt_BR/parashoot.ts | 23 | ../../../i18n/zh_CN/parashoot.ts \ |
24 | TRANSLATIONS += ../../../i18n/sl/parashoot.ts | 24 | ../../../i18n/zh_TW/parashoot.ts |
25 | TRANSLATIONS += ../../../i18n/zh_CN/parashoot.ts | ||
26 | TRANSLATIONS += ../../../i18n/zh_TW/parashoot.ts | ||
27 | |||
diff --git a/noncore/games/qasteroids/qasteroids.pro b/noncore/games/qasteroids/qasteroids.pro index 5876f8b..f7c05be 100644 --- a/noncore/games/qasteroids/qasteroids.pro +++ b/noncore/games/qasteroids/qasteroids.pro | |||
@@ -1,27 +1,24 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = ledmeter.h sprites.h toplevel.h view.h | 4 | HEADERS = ledmeter.h sprites.h toplevel.h view.h |
5 | SOURCES = ledmeter.cpp toplevel.cpp view.cpp main.cpp | 5 | SOURCES = ledmeter.cpp toplevel.cpp view.cpp main.cpp |
6 | TARGET = qasteroids | 6 | TARGET = qasteroids |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(OPIEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | 10 | ||
11 | 11 | TRANSLATIONS = ../../../i18n/de/qasteroids.ts \ | |
12 | 12 | ../../../i18n/en/qasteroids.ts \ | |
13 | TRANSLATIONS = ../../../i18n/de/qasteroids.ts | 13 | ../../../i18n/es/qasteroids.ts \ |
14 | TRANSLATIONS += ../../../i18n/en/qasteroids.ts | 14 | ../../../i18n/fr/qasteroids.ts \ |
15 | TRANSLATIONS += ../../../i18n/es/qasteroids.ts | 15 | ../../../i18n/hu/qasteroids.ts \ |
16 | TRANSLATIONS += ../../../i18n/fr/qasteroids.ts | 16 | ../../../i18n/ja/qasteroids.ts \ |
17 | TRANSLATIONS += ../../../i18n/hu/qasteroids.ts | 17 | ../../../i18n/ko/qasteroids.ts \ |
18 | TRANSLATIONS += ../../../i18n/ja/qasteroids.ts | 18 | ../../../i18n/no/qasteroids.ts \ |
19 | TRANSLATIONS += ../../../i18n/ko/qasteroids.ts | 19 | ../../../i18n/pl/qasteroids.ts \ |
20 | TRANSLATIONS += ../../../i18n/no/qasteroids.ts | 20 | ../../../i18n/pt/qasteroids.ts \ |
21 | TRANSLATIONS += ../../../i18n/pl/qasteroids.ts | 21 | ../../../i18n/pt_BR/qasteroids.ts \ |
22 | TRANSLATIONS += ../../../i18n/pt/qasteroids.ts | 22 | ../../../i18n/sl/qasteroids.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt_BR/qasteroids.ts | 23 | ../../../i18n/zh_CN/qasteroids.ts \ |
24 | TRANSLATIONS += ../../../i18n/sl/qasteroids.ts | 24 | ../../../i18n/zh_TW/qasteroids.ts |
25 | TRANSLATIONS += ../../../i18n/zh_CN/qasteroids.ts | ||
26 | TRANSLATIONS += ../../../i18n/zh_TW/qasteroids.ts | ||
27 | |||
diff --git a/noncore/games/snake/snake.pro b/noncore/games/snake/snake.pro index 8fbf15c..0c4ba67 100644 --- a/noncore/games/snake/snake.pro +++ b/noncore/games/snake/snake.pro | |||
@@ -1,27 +1,24 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = snake.h target.h obstacle.h interface.h codes.h | 4 | HEADERS = snake.h target.h obstacle.h interface.h codes.h |
5 | SOURCES = snake.cpp target.cpp obstacle.cpp interface.cpp main.cpp | 5 | SOURCES = snake.cpp target.cpp obstacle.cpp interface.cpp main.cpp |
6 | TARGET = snake | 6 | TARGET = snake |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(OPIEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | 10 | ||
11 | 11 | TRANSLATIONS = ../../../i18n/de/snake.ts \ | |
12 | 12 | ../../../i18n/en/snake.ts \ | |
13 | TRANSLATIONS = ../../../i18n/de/snake.ts | 13 | ../../../i18n/es/snake.ts \ |
14 | TRANSLATIONS += ../../../i18n/en/snake.ts | 14 | ../../../i18n/fr/snake.ts \ |
15 | TRANSLATIONS += ../../../i18n/es/snake.ts | 15 | ../../../i18n/hu/snake.ts \ |
16 | TRANSLATIONS += ../../../i18n/fr/snake.ts | 16 | ../../../i18n/ja/snake.ts \ |
17 | TRANSLATIONS += ../../../i18n/hu/snake.ts | 17 | ../../../i18n/ko/snake.ts \ |
18 | TRANSLATIONS += ../../../i18n/ja/snake.ts | 18 | ../../../i18n/no/snake.ts \ |
19 | TRANSLATIONS += ../../../i18n/ko/snake.ts | 19 | ../../../i18n/pl/snake.ts \ |
20 | TRANSLATIONS += ../../../i18n/no/snake.ts | 20 | ../../../i18n/pt/snake.ts \ |
21 | TRANSLATIONS += ../../../i18n/pl/snake.ts | 21 | ../../../i18n/pt_BR/snake.ts \ |
22 | TRANSLATIONS += ../../../i18n/pt/snake.ts | 22 | ../../../i18n/sl/snake.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt_BR/snake.ts | 23 | ../../../i18n/zh_CN/snake.ts \ |
24 | TRANSLATIONS += ../../../i18n/sl/snake.ts | 24 | ../../../i18n/zh_TW/snake.ts |
25 | TRANSLATIONS += ../../../i18n/zh_CN/snake.ts | ||
26 | TRANSLATIONS += ../../../i18n/zh_TW/snake.ts | ||
27 | |||
diff --git a/noncore/games/solitaire/solitaire.pro b/noncore/games/solitaire/solitaire.pro index 4919dbf..01d87ed 100755 --- a/noncore/games/solitaire/solitaire.pro +++ b/noncore/games/solitaire/solitaire.pro | |||
@@ -1,34 +1,25 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | |||
3 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
4 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
5 | |||
6 | HEADERS = canvascard.h canvasshapes.h cardgame.h cardgamelayout.h cardpile.h card.h carddeck.h canvascardgame.h freecellcardgame.h patiencecardgame.h canvascardwindow.h | 4 | HEADERS = canvascard.h canvasshapes.h cardgame.h cardgamelayout.h cardpile.h card.h carddeck.h canvascardgame.h freecellcardgame.h patiencecardgame.h canvascardwindow.h |
7 | |||
8 | SOURCES = canvascard.cpp canvasshapes.cpp cardgame.cpp cardgamelayout.cpp cardpile.cpp card.cpp carddeck.cpp canvascardgame.cpp freecellcardgame.cpp patiencecardgame.cpp canvascardwindow.cpp main.cpp | 5 | SOURCES = canvascard.cpp canvasshapes.cpp cardgame.cpp cardgamelayout.cpp cardpile.cpp card.cpp carddeck.cpp canvascardgame.cpp freecellcardgame.cpp patiencecardgame.cpp canvascardwindow.cpp main.cpp |
9 | |||
10 | TARGET = patience | 6 | TARGET = patience |
11 | |||
12 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
13 | DEPENDPATH+= $(OPIEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
14 | LIBS += -lqpe | 9 | LIBS += -lqpe |
15 | |||
16 | REQUIRES= patience | 10 | REQUIRES= patience |
17 | 11 | ||
18 | 12 | TRANSLATIONS = ../../../i18n/de/patience.ts \ | |
19 | 13 | ../../../i18n/en/patience.ts \ | |
20 | TRANSLATIONS = ../../../i18n/de/patience.ts | 14 | ../../../i18n/es/patience.ts \ |
21 | TRANSLATIONS += ../../../i18n/en/patience.ts | 15 | ../../../i18n/fr/patience.ts \ |
22 | TRANSLATIONS += ../../../i18n/es/patience.ts | 16 | ../../../i18n/hu/patience.ts \ |
23 | TRANSLATIONS += ../../../i18n/fr/patience.ts | 17 | ../../../i18n/ja/patience.ts \ |
24 | TRANSLATIONS += ../../../i18n/hu/patience.ts | 18 | ../../../i18n/ko/patience.ts \ |
25 | TRANSLATIONS += ../../../i18n/ja/patience.ts | 19 | ../../../i18n/no/patience.ts \ |
26 | TRANSLATIONS += ../../../i18n/ko/patience.ts | 20 | ../../../i18n/pl/patience.ts \ |
27 | TRANSLATIONS += ../../../i18n/no/patience.ts | 21 | ../../../i18n/pt/patience.ts \ |
28 | TRANSLATIONS += ../../../i18n/pl/patience.ts | 22 | ../../../i18n/pt_BR/patience.ts \ |
29 | TRANSLATIONS += ../../../i18n/pt/patience.ts | 23 | ../../../i18n/sl/patience.ts \ |
30 | TRANSLATIONS += ../../../i18n/pt_BR/patience.ts | 24 | ../../../i18n/zh_CN/patience.ts \ |
31 | TRANSLATIONS += ../../../i18n/sl/patience.ts | 25 | ../../../i18n/zh_TW/patience.ts |
32 | TRANSLATIONS += ../../../i18n/zh_CN/patience.ts | ||
33 | TRANSLATIONS += ../../../i18n/zh_TW/patience.ts | ||
34 | |||
diff --git a/noncore/games/tetrix/tetrix.pro b/noncore/games/tetrix/tetrix.pro index 4928ff7..064f5ce 100644 --- a/noncore/games/tetrix/tetrix.pro +++ b/noncore/games/tetrix/tetrix.pro | |||
@@ -1,35 +1,32 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = minefield.h \ | 4 | HEADERS = minefield.h \ |
5 | gtetrix.h \ | 5 | gtetrix.h \ |
6 | qtetrix.h \ | 6 | qtetrix.h \ |
7 | qtetrixb.h \ | 7 | qtetrixb.h \ |
8 | tpiece.h | 8 | tpiece.h |
9 | SOURCES = main.cpp \ | 9 | SOURCES = main.cpp \ |
10 | gtetrix.cpp \ | 10 | gtetrix.cpp \ |
11 | qtetrix.cpp \ | 11 | qtetrix.cpp \ |
12 | qtetrixb.cpp \ | 12 | qtetrixb.cpp \ |
13 | tpiece.cpp | 13 | tpiece.cpp |
14 | INCLUDEPATH += $(OPIEDIR)/include | 14 | INCLUDEPATH += $(OPIEDIR)/include |
15 | DEPENDPATH+= $(OPIEDIR)/include | 15 | DEPENDPATH+= $(OPIEDIR)/include |
16 | LIBS += -lqpe | 16 | LIBS += -lqpe |
17 | INTERFACES= | 17 | INTERFACES= |
18 | 18 | ||
19 | 19 | TRANSLATIONS = ../../../i18n/de/tetrix.pro.in.ts \ | |
20 | 20 | ../../../i18n/en/tetrix.pro.in.ts \ | |
21 | TRANSLATIONS = ../../../i18n/de/tetrix.pro.in.ts | 21 | ../../../i18n/es/tetrix.pro.in.ts \ |
22 | TRANSLATIONS += ../../../i18n/en/tetrix.pro.in.ts | 22 | ../../../i18n/fr/tetrix.pro.in.ts \ |
23 | TRANSLATIONS += ../../../i18n/es/tetrix.pro.in.ts | 23 | ../../../i18n/hu/tetrix.pro.in.ts \ |
24 | TRANSLATIONS += ../../../i18n/fr/tetrix.pro.in.ts | 24 | ../../../i18n/ja/tetrix.pro.in.ts \ |
25 | TRANSLATIONS += ../../../i18n/hu/tetrix.pro.in.ts | 25 | ../../../i18n/ko/tetrix.pro.in.ts \ |
26 | TRANSLATIONS += ../../../i18n/ja/tetrix.pro.in.ts | 26 | ../../../i18n/no/tetrix.pro.in.ts \ |
27 | TRANSLATIONS += ../../../i18n/ko/tetrix.pro.in.ts | 27 | ../../../i18n/pl/tetrix.pro.in.ts \ |
28 | TRANSLATIONS += ../../../i18n/no/tetrix.pro.in.ts | 28 | ../../../i18n/pt/tetrix.pro.in.ts \ |
29 | TRANSLATIONS += ../../../i18n/pl/tetrix.pro.in.ts | 29 | ../../../i18n/pt_BR/tetrix.pro.in.ts \ |
30 | TRANSLATIONS += ../../../i18n/pt/tetrix.pro.in.ts | 30 | ../../../i18n/sl/tetrix.pro.in.ts \ |
31 | TRANSLATIONS += ../../../i18n/pt_BR/tetrix.pro.in.ts | 31 | ../../../i18n/zh_CN/tetrix.pro.in.ts \ |
32 | TRANSLATIONS += ../../../i18n/sl/tetrix.pro.in.ts | 32 | ../../../i18n/zh_TW/tetrix.pro.in.ts |
33 | TRANSLATIONS += ../../../i18n/zh_CN/tetrix.pro.in.ts | ||
34 | TRANSLATIONS += ../../../i18n/zh_TW/tetrix.pro.in.ts | ||
35 | |||
diff --git a/noncore/games/tictac/tictac.pro b/noncore/games/tictac/tictac.pro index 071eefa..0807e83 100644 --- a/noncore/games/tictac/tictac.pro +++ b/noncore/games/tictac/tictac.pro | |||
@@ -1,29 +1,26 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = tictac.h | 3 | HEADERS = tictac.h |
4 | SOURCES = main.cpp \ | 4 | SOURCES = main.cpp \ |
5 | tictac.cpp | 5 | tictac.cpp |
6 | TARGET = tictac | 6 | TARGET = tictac |
7 | REQUIRES=medium-config | 7 | REQUIRES=medium-config |
8 | INCLUDEPATH += $(OPIEDIR)/include | 8 | INCLUDEPATH += $(OPIEDIR)/include |
9 | DEPENDPATH += $(OPIEDIR)/include | 9 | DEPENDPATH += $(OPIEDIR)/include |
10 | LIBS += -lqpe | 10 | LIBS += -lqpe |
11 | DESTDIR = $(OPIEDIR)/bin | 11 | DESTDIR = $(OPIEDIR)/bin |
12 | 12 | ||
13 | 13 | TRANSLATIONS = ../../../i18n/de/tictac.ts \ | |
14 | 14 | ../../../i18n/en/tictac.ts \ | |
15 | TRANSLATIONS = ../../../i18n/de/tictac.ts | 15 | ../../../i18n/es/tictac.ts \ |
16 | TRANSLATIONS += ../../../i18n/en/tictac.ts | 16 | ../../../i18n/fr/tictac.ts \ |
17 | TRANSLATIONS += ../../../i18n/es/tictac.ts | 17 | ../../../i18n/hu/tictac.ts \ |
18 | TRANSLATIONS += ../../../i18n/fr/tictac.ts | 18 | ../../../i18n/ja/tictac.ts \ |
19 | TRANSLATIONS += ../../../i18n/hu/tictac.ts | 19 | ../../../i18n/ko/tictac.ts \ |
20 | TRANSLATIONS += ../../../i18n/ja/tictac.ts | 20 | ../../../i18n/no/tictac.ts \ |
21 | TRANSLATIONS += ../../../i18n/ko/tictac.ts | 21 | ../../../i18n/pl/tictac.ts \ |
22 | TRANSLATIONS += ../../../i18n/no/tictac.ts | 22 | ../../../i18n/pt/tictac.ts \ |
23 | TRANSLATIONS += ../../../i18n/pl/tictac.ts | 23 | ../../../i18n/pt_BR/tictac.ts \ |
24 | TRANSLATIONS += ../../../i18n/pt/tictac.ts | 24 | ../../../i18n/sl/tictac.ts \ |
25 | TRANSLATIONS += ../../../i18n/pt_BR/tictac.ts | 25 | ../../../i18n/zh_CN/tictac.ts \ |
26 | TRANSLATIONS += ../../../i18n/sl/tictac.ts | 26 | ../../../i18n/zh_TW/tictac.ts |
27 | TRANSLATIONS += ../../../i18n/zh_CN/tictac.ts | ||
28 | TRANSLATIONS += ../../../i18n/zh_TW/tictac.ts | ||
29 | |||
diff --git a/noncore/games/wordgame/wordgame.pro b/noncore/games/wordgame/wordgame.pro index 495f6d2..6c3398a 100644 --- a/noncore/games/wordgame/wordgame.pro +++ b/noncore/games/wordgame/wordgame.pro | |||
@@ -1,29 +1,26 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = wordgame.h | 4 | HEADERS = wordgame.h |
5 | SOURCES = main.cpp \ | 5 | SOURCES = main.cpp \ |
6 | wordgame.cpp | 6 | wordgame.cpp |
7 | INTERFACES= newgamebase.ui rulesbase.ui | 7 | INTERFACES= newgamebase.ui rulesbase.ui |
8 | TARGET = wordgame | 8 | TARGET = wordgame |
9 | INCLUDEPATH += $(OPIEDIR)/include | 9 | INCLUDEPATH += $(OPIEDIR)/include |
10 | DEPENDPATH+= $(OPIEDIR)/include | 10 | DEPENDPATH+= $(OPIEDIR)/include |
11 | LIBS += -lqpe | 11 | LIBS += -lqpe |
12 | 12 | ||
13 | 13 | TRANSLATIONS = ../../../i18n/de/wordgame.ts \ | |
14 | 14 | ../../../i18n/en/wordgame.ts \ | |
15 | TRANSLATIONS = ../../../i18n/de/wordgame.ts | 15 | ../../../i18n/es/wordgame.ts \ |
16 | TRANSLATIONS += ../../../i18n/en/wordgame.ts | 16 | ../../../i18n/fr/wordgame.ts \ |
17 | TRANSLATIONS += ../../../i18n/es/wordgame.ts | 17 | ../../../i18n/hu/wordgame.ts \ |
18 | TRANSLATIONS += ../../../i18n/fr/wordgame.ts | 18 | ../../../i18n/ja/wordgame.ts \ |
19 | TRANSLATIONS += ../../../i18n/hu/wordgame.ts | 19 | ../../../i18n/ko/wordgame.ts \ |
20 | TRANSLATIONS += ../../../i18n/ja/wordgame.ts | 20 | ../../../i18n/no/wordgame.ts \ |
21 | TRANSLATIONS += ../../../i18n/ko/wordgame.ts | 21 | ../../../i18n/pl/wordgame.ts \ |
22 | TRANSLATIONS += ../../../i18n/no/wordgame.ts | 22 | ../../../i18n/pt/wordgame.ts \ |
23 | TRANSLATIONS += ../../../i18n/pl/wordgame.ts | 23 | ../../../i18n/pt_BR/wordgame.ts \ |
24 | TRANSLATIONS += ../../../i18n/pt/wordgame.ts | 24 | ../../../i18n/sl/wordgame.ts \ |
25 | TRANSLATIONS += ../../../i18n/pt_BR/wordgame.ts | 25 | ../../../i18n/zh_CN/wordgame.ts \ |
26 | TRANSLATIONS += ../../../i18n/sl/wordgame.ts | 26 | ../../../i18n/zh_TW/wordgame.ts |
27 | TRANSLATIONS += ../../../i18n/zh_CN/wordgame.ts | ||
28 | TRANSLATIONS += ../../../i18n/zh_TW/wordgame.ts | ||
29 | |||
diff --git a/noncore/graphics/drawpad/drawpad.pro b/noncore/graphics/drawpad/drawpad.pro index 6d7c326..dd33a6b 100644 --- a/noncore/graphics/drawpad/drawpad.pro +++ b/noncore/graphics/drawpad/drawpad.pro | |||
@@ -1,64 +1,61 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | HEADERS = drawpad.h \ | 3 | HEADERS = drawpad.h \ |
4 | drawpadcanvas.h \ | 4 | drawpadcanvas.h \ |
5 | ellipsetool.h \ | 5 | ellipsetool.h \ |
6 | erasetool.h \ | 6 | erasetool.h \ |
7 | exportdialog.h \ | 7 | exportdialog.h \ |
8 | filltool.h \ | 8 | filltool.h \ |
9 | filledellipsetool.h \ | 9 | filledellipsetool.h \ |
10 | filledrectangletool.h \ | 10 | filledrectangletool.h \ |
11 | importdialog.h \ | 11 | importdialog.h \ |
12 | linetool.h \ | 12 | linetool.h \ |
13 | newpagedialog.h \ | 13 | newpagedialog.h \ |
14 | page.h \ | 14 | page.h \ |
15 | pageinformationdialog.h \ | 15 | pageinformationdialog.h \ |
16 | pointtool.h \ | 16 | pointtool.h \ |
17 | rectangletool.h \ | 17 | rectangletool.h \ |
18 | shapetool.h \ | 18 | shapetool.h \ |
19 | texttool.h \ | 19 | texttool.h \ |
20 | thumbnailview.h \ | 20 | thumbnailview.h \ |
21 | tool.h | 21 | tool.h |
22 | SOURCES = drawpad.cpp \ | 22 | SOURCES = drawpad.cpp \ |
23 | drawpadcanvas.cpp \ | 23 | drawpadcanvas.cpp \ |
24 | ellipsetool.cpp \ | 24 | ellipsetool.cpp \ |
25 | erasetool.cpp \ | 25 | erasetool.cpp \ |
26 | exportdialog.cpp \ | 26 | exportdialog.cpp \ |
27 | filltool.cpp \ | 27 | filltool.cpp \ |
28 | filledellipsetool.cpp \ | 28 | filledellipsetool.cpp \ |
29 | filledrectangletool.cpp \ | 29 | filledrectangletool.cpp \ |
30 | importdialog.cpp \ | 30 | importdialog.cpp \ |
31 | linetool.cpp \ | 31 | linetool.cpp \ |
32 | main.cpp \ | 32 | main.cpp \ |
33 | newpagedialog.cpp \ | 33 | newpagedialog.cpp \ |
34 | page.cpp \ | 34 | page.cpp \ |
35 | pageinformationdialog.cpp \ | 35 | pageinformationdialog.cpp \ |
36 | pointtool.cpp \ | 36 | pointtool.cpp \ |
37 | rectangletool.cpp \ | 37 | rectangletool.cpp \ |
38 | shapetool.cpp \ | 38 | shapetool.cpp \ |
39 | texttool.cpp \ | 39 | texttool.cpp \ |
40 | thumbnailview.cpp \ | 40 | thumbnailview.cpp \ |
41 | tool.cpp | 41 | tool.cpp |
42 | INCLUDEPATH+= $(OPIEDIR)/include | 42 | INCLUDEPATH+= $(OPIEDIR)/include |
43 | DEPENDPATH+= $(OPIEDIR)/include | 43 | DEPENDPATH+= $(OPIEDIR)/include |
44 | LIBS += -lqpe -lopie | 44 | LIBS += -lqpe -lopie |
45 | DESTDIR = $(OPIEDIR)/bin | 45 | DESTDIR = $(OPIEDIR)/bin |
46 | TARGET = drawpad | 46 | TARGET = drawpad |
47 | 47 | ||
48 | 48 | TRANSLATIONS = ../../../i18n/de/drawpad.ts \ | |
49 | 49 | ../../../i18n/en/drawpad.ts \ | |
50 | TRANSLATIONS = ../../../i18n/de/drawpad.ts | 50 | ../../../i18n/es/drawpad.ts \ |
51 | TRANSLATIONS += ../../../i18n/en/drawpad.ts | 51 | ../../../i18n/fr/drawpad.ts \ |
52 | TRANSLATIONS += ../../../i18n/es/drawpad.ts | 52 | ../../../i18n/hu/drawpad.ts \ |
53 | TRANSLATIONS += ../../../i18n/fr/drawpad.ts | 53 | ../../../i18n/ja/drawpad.ts \ |
54 | TRANSLATIONS += ../../../i18n/hu/drawpad.ts | 54 | ../../../i18n/ko/drawpad.ts \ |
55 | TRANSLATIONS += ../../../i18n/ja/drawpad.ts | 55 | ../../../i18n/no/drawpad.ts \ |
56 | TRANSLATIONS += ../../../i18n/ko/drawpad.ts | 56 | ../../../i18n/pl/drawpad.ts \ |
57 | TRANSLATIONS += ../../../i18n/no/drawpad.ts | 57 | ../../../i18n/pt/drawpad.ts \ |
58 | TRANSLATIONS += ../../../i18n/pl/drawpad.ts | 58 | ../../../i18n/pt_BR/drawpad.ts \ |
59 | TRANSLATIONS += ../../../i18n/pt/drawpad.ts | 59 | ../../../i18n/sl/drawpad.ts \ |
60 | TRANSLATIONS += ../../../i18n/pt_BR/drawpad.ts | 60 | ../../../i18n/zh_CN/drawpad.ts \ |
61 | TRANSLATIONS += ../../../i18n/sl/drawpad.ts | 61 | ../../../i18n/zh_TW/drawpad.ts |
62 | TRANSLATIONS += ../../../i18n/zh_CN/drawpad.ts | ||
63 | TRANSLATIONS += ../../../i18n/zh_TW/drawpad.ts | ||
64 | |||
diff --git a/noncore/multimedia/showimg/showimg.pro b/noncore/multimedia/showimg/showimg.pro index 78ee67c..f877bcc 100644 --- a/noncore/multimedia/showimg/showimg.pro +++ b/noncore/multimedia/showimg/showimg.pro | |||
@@ -1,35 +1,26 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | |||
3 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
4 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
5 | |||
6 | HEADERS = showimg.h | 4 | HEADERS = showimg.h |
7 | |||
8 | SOURCES = main.cpp \ | 5 | SOURCES = main.cpp \ |
9 | showimg.cpp | 6 | showimg.cpp |
10 | |||
11 | TARGET = showimg | 7 | TARGET = showimg |
12 | |||
13 | INCLUDEPATH += $(OPIEDIR)/include | 8 | INCLUDEPATH += $(OPIEDIR)/include |
14 | DEPENDPATH += $(OPIEDIR)/include | 9 | DEPENDPATH += $(OPIEDIR)/include |
15 | LIBS += -lqpe | 10 | LIBS += -lqpe |
16 | |||
17 | REQUIRES = showimg | 11 | REQUIRES = showimg |
18 | 12 | ||
19 | 13 | TRANSLATIONS = ../../../i18n/de/showimg.ts \ | |
20 | 14 | ../../../i18n/en/showimg.ts \ | |
21 | TRANSLATIONS = ../../../i18n/de/showimg.ts | 15 | ../../../i18n/es/showimg.ts \ |
22 | TRANSLATIONS += ../../../i18n/en/showimg.ts | 16 | ../../../i18n/fr/showimg.ts \ |
23 | TRANSLATIONS += ../../../i18n/es/showimg.ts | 17 | ../../../i18n/hu/showimg.ts \ |
24 | TRANSLATIONS += ../../../i18n/fr/showimg.ts | 18 | ../../../i18n/ja/showimg.ts \ |
25 | TRANSLATIONS += ../../../i18n/hu/showimg.ts | 19 | ../../../i18n/ko/showimg.ts \ |
26 | TRANSLATIONS += ../../../i18n/ja/showimg.ts | 20 | ../../../i18n/no/showimg.ts \ |
27 | TRANSLATIONS += ../../../i18n/ko/showimg.ts | 21 | ../../../i18n/pl/showimg.ts \ |
28 | TRANSLATIONS += ../../../i18n/no/showimg.ts | 22 | ../../../i18n/pt/showimg.ts \ |
29 | TRANSLATIONS += ../../../i18n/pl/showimg.ts | 23 | ../../../i18n/pt_BR/showimg.ts \ |
30 | TRANSLATIONS += ../../../i18n/pt/showimg.ts | 24 | ../../../i18n/sl/showimg.ts \ |
31 | TRANSLATIONS += ../../../i18n/pt_BR/showimg.ts | 25 | ../../../i18n/zh_CN/showimg.ts \ |
32 | TRANSLATIONS += ../../../i18n/sl/showimg.ts | 26 | ../../../i18n/zh_TW/showimg.ts |
33 | TRANSLATIONS += ../../../i18n/zh_CN/showimg.ts | ||
34 | TRANSLATIONS += ../../../i18n/zh_TW/showimg.ts | ||
35 | |||
diff --git a/noncore/net/opieftp/opieftp.pro b/noncore/net/opieftp/opieftp.pro index 3b6d3ea..a56aed1 100644 --- a/noncore/net/opieftp/opieftp.pro +++ b/noncore/net/opieftp/opieftp.pro | |||
@@ -1,28 +1,25 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = opieftp.h inputDialog.h ftplib.h | 3 | HEADERS = opieftp.h inputDialog.h ftplib.h |
4 | SOURCES = opieftp.cpp inputDialog.cpp ftplib.c main.cpp | 4 | SOURCES = opieftp.cpp inputDialog.cpp ftplib.c main.cpp |
5 | TARGET = opieftp | 5 | TARGET = opieftp |
6 | REQUIRES=medium-config | 6 | REQUIRES=medium-config |
7 | DESTDIR = $(OPIEDIR)/bin | 7 | DESTDIR = $(OPIEDIR)/bin |
8 | INCLUDEPATH += $(OPIEDIR)/include | 8 | INCLUDEPATH += $(OPIEDIR)/include |
9 | DEPENDPATH += $(OPIEDIR)/include | 9 | DEPENDPATH += $(OPIEDIR)/include |
10 | LIBS += -lqpe | 10 | LIBS += -lqpe |
11 | 11 | ||
12 | 12 | TRANSLATIONS = ../../../i18n/de/opieftp.ts \ | |
13 | 13 | ../../../i18n/en/opieftp.ts \ | |
14 | TRANSLATIONS = ../../../i18n/de/opieftp.ts | 14 | ../../../i18n/es/opieftp.ts \ |
15 | TRANSLATIONS += ../../../i18n/en/opieftp.ts | 15 | ../../../i18n/fr/opieftp.ts \ |
16 | TRANSLATIONS += ../../../i18n/es/opieftp.ts | 16 | ../../../i18n/hu/opieftp.ts \ |
17 | TRANSLATIONS += ../../../i18n/fr/opieftp.ts | 17 | ../../../i18n/ja/opieftp.ts \ |
18 | TRANSLATIONS += ../../../i18n/hu/opieftp.ts | 18 | ../../../i18n/ko/opieftp.ts \ |
19 | TRANSLATIONS += ../../../i18n/ja/opieftp.ts | 19 | ../../../i18n/no/opieftp.ts \ |
20 | TRANSLATIONS += ../../../i18n/ko/opieftp.ts | 20 | ../../../i18n/pl/opieftp.ts \ |
21 | TRANSLATIONS += ../../../i18n/no/opieftp.ts | 21 | ../../../i18n/pt/opieftp.ts \ |
22 | TRANSLATIONS += ../../../i18n/pl/opieftp.ts | 22 | ../../../i18n/pt_BR/opieftp.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt/opieftp.ts | 23 | ../../../i18n/sl/opieftp.ts \ |
24 | TRANSLATIONS += ../../../i18n/pt_BR/opieftp.ts | 24 | ../../../i18n/zh_CN/opieftp.ts \ |
25 | TRANSLATIONS += ../../../i18n/sl/opieftp.ts | 25 | ../../../i18n/zh_TW/opieftp.ts |
26 | TRANSLATIONS += ../../../i18n/zh_CN/opieftp.ts | ||
27 | TRANSLATIONS += ../../../i18n/zh_TW/opieftp.ts | ||
28 | |||
diff --git a/noncore/net/opietooth/applet/applet.pro b/noncore/net/opietooth/applet/applet.pro index e0a93dc..229d673 100644 --- a/noncore/net/opietooth/applet/applet.pro +++ b/noncore/net/opietooth/applet/applet.pro | |||
@@ -1,29 +1,26 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = bluezapplet.h bluezappletimpl.h | 3 | HEADERS = bluezapplet.h bluezappletimpl.h |
4 | SOURCES = bluezapplet.cpp bluezappletimpl.cpp | 4 | SOURCES = bluezapplet.cpp bluezappletimpl.cpp |
5 | TARGET = bluetoothapplet | 5 | TARGET = bluetoothapplet |
6 | DESTDIR = $(OPIEDIR)/plugins/applets | 6 | DESTDIR = $(OPIEDIR)/plugins/applets |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | INCLUDEPATH += $(OPIEDIR)/noncore/net/opietooth/lib | 8 | INCLUDEPATH += $(OPIEDIR)/noncore/net/opietooth/lib |
9 | DEPENDPATH += $(OPIEDIR)/include | 9 | DEPENDPATH += $(OPIEDIR)/include |
10 | LIBS += -lqpe -lopietooth | 10 | LIBS += -lqpe -lopietooth |
11 | VERSION = 0.0.3 | 11 | VERSION = 0.0.3 |
12 | 12 | ||
13 | 13 | TRANSLATIONS = ../../../../i18n/de/libbluetoothapplet.ts \ | |
14 | 14 | ../../../../i18n/en/libbluetoothapplet.ts \ | |
15 | TRANSLATIONS = ../../../../i18n/de/libbluetoothapplet.ts | 15 | ../../../../i18n/es/libbluetoothapplet.ts \ |
16 | TRANSLATIONS += ../../../../i18n/en/libbluetoothapplet.ts | 16 | ../../../../i18n/fr/libbluetoothapplet.ts \ |
17 | TRANSLATIONS += ../../../../i18n/es/libbluetoothapplet.ts | 17 | ../../../../i18n/hu/libbluetoothapplet.ts \ |
18 | TRANSLATIONS += ../../../../i18n/fr/libbluetoothapplet.ts | 18 | ../../../../i18n/ja/libbluetoothapplet.ts \ |
19 | TRANSLATIONS += ../../../../i18n/hu/libbluetoothapplet.ts | 19 | ../../../../i18n/ko/libbluetoothapplet.ts \ |
20 | TRANSLATIONS += ../../../../i18n/ja/libbluetoothapplet.ts | 20 | ../../../../i18n/no/libbluetoothapplet.ts \ |
21 | TRANSLATIONS += ../../../../i18n/ko/libbluetoothapplet.ts | 21 | ../../../../i18n/pl/libbluetoothapplet.ts \ |
22 | TRANSLATIONS += ../../../../i18n/no/libbluetoothapplet.ts | 22 | ../../../../i18n/pt/libbluetoothapplet.ts \ |
23 | TRANSLATIONS += ../../../../i18n/pl/libbluetoothapplet.ts | 23 | ../../../../i18n/pt_BR/libbluetoothapplet.ts \ |
24 | TRANSLATIONS += ../../../../i18n/pt/libbluetoothapplet.ts | 24 | ../../../../i18n/sl/libbluetoothapplet.ts \ |
25 | TRANSLATIONS += ../../../../i18n/pt_BR/libbluetoothapplet.ts | 25 | ../../../../i18n/zh_CN/libbluetoothapplet.ts \ |
26 | TRANSLATIONS += ../../../../i18n/sl/libbluetoothapplet.ts | 26 | ../../../../i18n/zh_TW/libbluetoothapplet.ts |
27 | TRANSLATIONS += ../../../../i18n/zh_CN/libbluetoothapplet.ts | ||
28 | TRANSLATIONS += ../../../../i18n/zh_TW/libbluetoothapplet.ts | ||
29 | |||
diff --git a/noncore/net/opietooth/blue-pin/blue-pin.pro b/noncore/net/opietooth/blue-pin/blue-pin.pro index 2ddb014..1444bb6 100644 --- a/noncore/net/opietooth/blue-pin/blue-pin.pro +++ b/noncore/net/opietooth/blue-pin/blue-pin.pro | |||
@@ -1,30 +1,27 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | #CONFIG = qt warn_on debug | 2 | #CONFIG = qt warn_on debug |
3 | CONFIG = qt warn_on release | 3 | CONFIG = qt warn_on release |
4 | HEADERS = pindlg.h | 4 | HEADERS = pindlg.h |
5 | SOURCES = main.cc pindlg.cc | 5 | SOURCES = main.cc pindlg.cc |
6 | INCLUDEPATH += $(OPIEDIR)/include | 6 | INCLUDEPATH += $(OPIEDIR)/include |
7 | INCLUDEPATH += $(OPIEDIR)/noncore/opietooth/lib | 7 | INCLUDEPATH += $(OPIEDIR)/noncore/opietooth/lib |
8 | DEPENDPATH += $(OPIEDIR)/include | 8 | DEPENDPATH += $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | INTERFACES = pindlgbase.ui | 10 | INTERFACES = pindlgbase.ui |
11 | DESTDIR = $(OPIEDIR)/bin | 11 | DESTDIR = $(OPIEDIR)/bin |
12 | TARGET = bluepin | 12 | TARGET = bluepin |
13 | 13 | ||
14 | 14 | TRANSLATIONS = ../../../../i18n/de/bluepin.ts \ | |
15 | 15 | ../../../../i18n/en/bluepin.ts \ | |
16 | TRANSLATIONS = ../../../../i18n/de/bluepin.ts | 16 | ../../../../i18n/es/bluepin.ts \ |
17 | TRANSLATIONS += ../../../../i18n/en/bluepin.ts | 17 | ../../../../i18n/fr/bluepin.ts \ |
18 | TRANSLATIONS += ../../../../i18n/es/bluepin.ts | 18 | ../../../../i18n/hu/bluepin.ts \ |
19 | TRANSLATIONS += ../../../../i18n/fr/bluepin.ts | 19 | ../../../../i18n/ja/bluepin.ts \ |
20 | TRANSLATIONS += ../../../../i18n/hu/bluepin.ts | 20 | ../../../../i18n/ko/bluepin.ts \ |
21 | TRANSLATIONS += ../../../../i18n/ja/bluepin.ts | 21 | ../../../../i18n/no/bluepin.ts \ |
22 | TRANSLATIONS += ../../../../i18n/ko/bluepin.ts | 22 | ../../../../i18n/pl/bluepin.ts \ |
23 | TRANSLATIONS += ../../../../i18n/no/bluepin.ts | 23 | ../../../../i18n/pt/bluepin.ts \ |
24 | TRANSLATIONS += ../../../../i18n/pl/bluepin.ts | 24 | ../../../../i18n/pt_BR/bluepin.ts \ |
25 | TRANSLATIONS += ../../../../i18n/pt/bluepin.ts | 25 | ../../../../i18n/sl/bluepin.ts \ |
26 | TRANSLATIONS += ../../../../i18n/pt_BR/bluepin.ts | 26 | ../../../../i18n/zh_CN/bluepin.ts \ |
27 | TRANSLATIONS += ../../../../i18n/sl/bluepin.ts | 27 | ../../../../i18n/zh_TW/bluepin.ts |
28 | TRANSLATIONS += ../../../../i18n/zh_CN/bluepin.ts | ||
29 | TRANSLATIONS += ../../../../i18n/zh_TW/bluepin.ts | ||
30 | |||
diff --git a/noncore/net/opietooth/lib/lib.pro b/noncore/net/opietooth/lib/lib.pro index eec7e43..ecf2e6c 100644 --- a/noncore/net/opietooth/lib/lib.pro +++ b/noncore/net/opietooth/lib/lib.pro | |||
@@ -1,26 +1,24 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qte warn_on release | 2 | CONFIG += qte warn_on release |
3 | HEADERS = parser.h device.h manager.h remotedevice.h services.h | 3 | HEADERS = parser.h device.h manager.h remotedevice.h services.h |
4 | SOURCES = parser.cc device.cc manager.cc remotedevice.cc services.cc | 4 | SOURCES = parser.cc device.cc manager.cc remotedevice.cc services.cc |
5 | TARGET = opietooth | 5 | TARGET = opietooth |
6 | INCLUDEPATH += $(OPIEDIR)/include . | 6 | INCLUDEPATH += $(OPIEDIR)/include . |
7 | DESTDIR = $(QTDIR)/lib$(PROJMAK) | 7 | DESTDIR = $(QTDIR)/lib$(PROJMAK) |
8 | LIBS += -lopie | 8 | LIBS += -lopie |
9 | #VERSION = 0.0.0 | 9 | #VERSION = 0.0.0 |
10 | 10 | ||
11 | 11 | TRANSLATIONS = ../../../../i18n/de/libopietooth.ts \ | |
12 | TRANSLATIONS = ../../../../i18n/de/libopietooth.ts | 12 | ../../../../i18n/en/libopietooth.ts \ |
13 | TRANSLATIONS += ../../../../i18n/en/libopietooth.ts | 13 | ../../../../i18n/es/libopietooth.ts \ |
14 | TRANSLATIONS += ../../../../i18n/es/libopietooth.ts | 14 | ../../../../i18n/fr/libopietooth.ts \ |
15 | TRANSLATIONS += ../../../../i18n/fr/libopietooth.ts | 15 | ../../../../i18n/hu/libopietooth.ts \ |
16 | TRANSLATIONS += ../../../../i18n/hu/libopietooth.ts | 16 | ../../../../i18n/ja/libopietooth.ts \ |
17 | TRANSLATIONS += ../../../../i18n/ja/libopietooth.ts | 17 | ../../../../i18n/ko/libopietooth.ts \ |
18 | TRANSLATIONS += ../../../../i18n/ko/libopietooth.ts | 18 | ../../../../i18n/no/libopietooth.ts \ |
19 | TRANSLATIONS += ../../../../i18n/no/libopietooth.ts | 19 | ../../../../i18n/pl/libopietooth.ts \ |
20 | TRANSLATIONS += ../../../../i18n/pl/libopietooth.ts | 20 | ../../../../i18n/pt/libopietooth.ts \ |
21 | TRANSLATIONS += ../../../../i18n/pt/libopietooth.ts | 21 | ../../../../i18n/pt_BR/libopietooth.ts \ |
22 | TRANSLATIONS += ../../../../i18n/pt_BR/libopietooth.ts | 22 | ../../../../i18n/sl/libopietooth.ts \ |
23 | TRANSLATIONS += ../../../../i18n/sl/libopietooth.ts | 23 | ../../../../i18n/zh_CN/libopietooth.ts \ |
24 | TRANSLATIONS += ../../../../i18n/zh_CN/libopietooth.ts | 24 | ../../../../i18n/zh_TW/libopietooth.ts |
25 | TRANSLATIONS += ../../../../i18n/zh_TW/libopietooth.ts | ||
26 | |||
diff --git a/noncore/net/opietooth/manager/manager.pro b/noncore/net/opietooth/manager/manager.pro index 1f7ec55..39ddcaf 100644 --- a/noncore/net/opietooth/manager/manager.pro +++ b/noncore/net/opietooth/manager/manager.pro | |||
@@ -1,30 +1,27 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG = qt warn_on debug | 2 | CONFIG = qt warn_on debug |
3 | #CONFIG = qt warn_on release | 3 | #CONFIG = qt warn_on release |
4 | HEADERS = bluebase.h scandialog.h btlistitem.h | 4 | HEADERS = bluebase.h scandialog.h btlistitem.h |
5 | SOURCES = main.cpp bluebase.cpp scandialog.cpp btlistitem.cpp | 5 | SOURCES = main.cpp bluebase.cpp scandialog.cpp btlistitem.cpp |
6 | INCLUDEPATH += $(OPIEDIR)/include | 6 | INCLUDEPATH += $(OPIEDIR)/include |
7 | INCLUDEPATH += $(OPIEDIR)/noncore/net/opietooth/lib | 7 | INCLUDEPATH += $(OPIEDIR)/noncore/net/opietooth/lib |
8 | DEPENDPATH += $(OPIEDIR)/include | 8 | DEPENDPATH += $(OPIEDIR)/include |
9 | LIBS += -lqpe -lopietooth -lopie | 9 | LIBS += -lqpe -lopietooth -lopie |
10 | INTERFACES = bluetoothbase.ui devicedialog.ui | 10 | INTERFACES = bluetoothbase.ui devicedialog.ui |
11 | DESTDIR = $(OPIEDIR)/bin | 11 | DESTDIR = $(OPIEDIR)/bin |
12 | TARGET = bluetooth-manager | 12 | TARGET = bluetooth-manager |
13 | 13 | ||
14 | 14 | TRANSLATIONS = ../../../../i18n/de/bluetooth-manager.ts \ | |
15 | 15 | ../../../../i18n/en/bluetooth-manager.ts \ | |
16 | TRANSLATIONS = ../../../../i18n/de/bluetooth-manager.ts | 16 | ../../../../i18n/es/bluetooth-manager.ts \ |
17 | TRANSLATIONS += ../../../../i18n/en/bluetooth-manager.ts | 17 | ../../../../i18n/fr/bluetooth-manager.ts \ |
18 | TRANSLATIONS += ../../../../i18n/es/bluetooth-manager.ts | 18 | ../../../../i18n/hu/bluetooth-manager.ts \ |
19 | TRANSLATIONS += ../../../../i18n/fr/bluetooth-manager.ts | 19 | ../../../../i18n/ja/bluetooth-manager.ts \ |
20 | TRANSLATIONS += ../../../../i18n/hu/bluetooth-manager.ts | 20 | ../../../../i18n/ko/bluetooth-manager.ts \ |
21 | TRANSLATIONS += ../../../../i18n/ja/bluetooth-manager.ts | 21 | ../../../../i18n/no/bluetooth-manager.ts \ |
22 | TRANSLATIONS += ../../../../i18n/ko/bluetooth-manager.ts | 22 | ../../../../i18n/pl/bluetooth-manager.ts \ |
23 | TRANSLATIONS += ../../../../i18n/no/bluetooth-manager.ts | 23 | ../../../../i18n/pt/bluetooth-manager.ts \ |
24 | TRANSLATIONS += ../../../../i18n/pl/bluetooth-manager.ts | 24 | ../../../../i18n/pt_BR/bluetooth-manager.ts \ |
25 | TRANSLATIONS += ../../../../i18n/pt/bluetooth-manager.ts | 25 | ../../../../i18n/sl/bluetooth-manager.ts \ |
26 | TRANSLATIONS += ../../../../i18n/pt_BR/bluetooth-manager.ts | 26 | ../../../../i18n/zh_CN/bluetooth-manager.ts \ |
27 | TRANSLATIONS += ../../../../i18n/sl/bluetooth-manager.ts | 27 | ../../../../i18n/zh_TW/bluetooth-manager.ts |
28 | TRANSLATIONS += ../../../../i18n/zh_CN/bluetooth-manager.ts | ||
29 | TRANSLATIONS += ../../../../i18n/zh_TW/bluetooth-manager.ts | ||
30 | |||
diff --git a/noncore/settings/language/language.pro b/noncore/settings/language/language.pro index 0d2daba..11ef3a0 100644 --- a/noncore/settings/language/language.pro +++ b/noncore/settings/language/language.pro | |||
@@ -1,28 +1,25 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = settings.h | 4 | HEADERS = settings.h |
5 | SOURCES = language.cpp main.cpp | 5 | SOURCES = language.cpp main.cpp |
6 | INTERFACES= languagesettingsbase.ui | 6 | INTERFACES= languagesettingsbase.ui |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= ../$(OPIEDIR)/include | 8 | DEPENDPATH+= ../$(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | TARGET = language | 10 | TARGET = language |
11 | 11 | ||
12 | 12 | TRANSLATIONS = ../../../i18n/de/language.ts \ | |
13 | 13 | ../../../i18n/en/language.ts \ | |
14 | TRANSLATIONS = ../../../i18n/de/language.ts | 14 | ../../../i18n/es/language.ts \ |
15 | TRANSLATIONS += ../../../i18n/en/language.ts | 15 | ../../../i18n/fr/language.ts \ |
16 | TRANSLATIONS += ../../../i18n/es/language.ts | 16 | ../../../i18n/hu/language.ts \ |
17 | TRANSLATIONS += ../../../i18n/fr/language.ts | 17 | ../../../i18n/ja/language.ts \ |
18 | TRANSLATIONS += ../../../i18n/hu/language.ts | 18 | ../../../i18n/ko/language.ts \ |
19 | TRANSLATIONS += ../../../i18n/ja/language.ts | 19 | ../../../i18n/no/language.ts \ |
20 | TRANSLATIONS += ../../../i18n/ko/language.ts | 20 | ../../../i18n/pl/language.ts \ |
21 | TRANSLATIONS += ../../../i18n/no/language.ts | 21 | ../../../i18n/pt/language.ts \ |
22 | TRANSLATIONS += ../../../i18n/pl/language.ts | 22 | ../../../i18n/pt_BR/language.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt/language.ts | 23 | ../../../i18n/sl/language.ts \ |
24 | TRANSLATIONS += ../../../i18n/pt_BR/language.ts | 24 | ../../../i18n/zh_CN/language.ts \ |
25 | TRANSLATIONS += ../../../i18n/sl/language.ts | 25 | ../../../i18n/zh_TW/language.ts |
26 | TRANSLATIONS += ../../../i18n/zh_CN/language.ts | ||
27 | TRANSLATIONS += ../../../i18n/zh_TW/language.ts | ||
28 | |||
diff --git a/noncore/settings/mediummount/mediummount.pro b/noncore/settings/mediummount/mediummount.pro index 667f8ed..df19711 100644 --- a/noncore/settings/mediummount/mediummount.pro +++ b/noncore/settings/mediummount/mediummount.pro | |||
@@ -1,27 +1,25 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | DESTDIR = $(OPIEDIR)/bin/ | 2 | DESTDIR = $(OPIEDIR)/bin/ |
3 | #CONFIG = qt warn_on debug | 3 | #CONFIG = qt warn_on debug |
4 | CONFIG = qt warn_on release | 4 | CONFIG = qt warn_on release |
5 | HEADERS = mediumwidget.h mediumglobal.h mainwindow.h | 5 | HEADERS = mediumwidget.h mediumglobal.h mainwindow.h |
6 | SOURCES = main.cpp mediumwidget.cc mediumglobal.cc mainwindow.cc | 6 | SOURCES = main.cpp mediumwidget.cc mediumglobal.cc mainwindow.cc |
7 | INCLUDEPATH+= $(OPIEDIR)/include | 7 | INCLUDEPATH+= $(OPIEDIR)/include |
8 | DEPENDPATH+= $(OPIEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | TARGET = mediummount | 10 | TARGET = mediummount |
11 | 11 | ||
12 | 12 | TRANSLATIONS = ../../../i18n/de/mediummount.ts \ | |
13 | TRANSLATIONS = ../../../i18n/de/mediummount.ts | 13 | ../../../i18n/en/mediummount.ts \ |
14 | TRANSLATIONS += ../../../i18n/en/mediummount.ts | 14 | ../../../i18n/es/mediummount.ts \ |
15 | TRANSLATIONS += ../../../i18n/es/mediummount.ts | 15 | ../../../i18n/fr/mediummount.ts \ |
16 | TRANSLATIONS += ../../../i18n/fr/mediummount.ts | 16 | ../../../i18n/hu/mediummount.ts \ |
17 | TRANSLATIONS += ../../../i18n/hu/mediummount.ts | 17 | ../../../i18n/ja/mediummount.ts \ |
18 | TRANSLATIONS += ../../../i18n/ja/mediummount.ts | 18 | ../../../i18n/ko/mediummount.ts \ |
19 | TRANSLATIONS += ../../../i18n/ko/mediummount.ts | 19 | ../../../i18n/no/mediummount.ts \ |
20 | TRANSLATIONS += ../../../i18n/no/mediummount.ts | 20 | ../../../i18n/pl/mediummount.ts \ |
21 | TRANSLATIONS += ../../../i18n/pl/mediummount.ts | 21 | ../../../i18n/pt/mediummount.ts \ |
22 | TRANSLATIONS += ../../../i18n/pt/mediummount.ts | 22 | ../../../i18n/pt_BR/mediummount.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt_BR/mediummount.ts | 23 | ../../../i18n/sl/mediummount.ts \ |
24 | TRANSLATIONS += ../../../i18n/sl/mediummount.ts | 24 | ../../../i18n/zh_CN/mediummount.ts \ |
25 | TRANSLATIONS += ../../../i18n/zh_CN/mediummount.ts | 25 | ../../../i18n/zh_TW/mediummount.ts |
26 | TRANSLATIONS += ../../../i18n/zh_TW/mediummount.ts | ||
27 | |||
diff --git a/noncore/settings/netsystemtime/netsystemtime.pro b/noncore/settings/netsystemtime/netsystemtime.pro index 56f54c4..026b8da 100644 --- a/noncore/settings/netsystemtime/netsystemtime.pro +++ b/noncore/settings/netsystemtime/netsystemtime.pro | |||
@@ -1,28 +1,26 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on debug | 2 | CONFIG = qt warn_on debug |
3 | #CONFIG = qt warn_on release | 3 | #CONFIG = qt warn_on release |
4 | HEADERS = ntp.h settime.h | 4 | HEADERS = ntp.h settime.h |
5 | SOURCES = main.cpp ntp.cpp settime.cpp | 5 | SOURCES = main.cpp ntp.cpp settime.cpp |
6 | INCLUDEPATH+= $(OPIEDIR)/include | 6 | INCLUDEPATH+= $(OPIEDIR)/include |
7 | DEPENDPATH+= $(OPIEDIR)/include | 7 | DEPENDPATH+= $(OPIEDIR)/include |
8 | LIBS += -lqpe -lopie | 8 | LIBS += -lqpe -lopie |
9 | INTERFACES= ntpbase.ui | 9 | INTERFACES= ntpbase.ui |
10 | DESTDIR = $(OPIEDIR)/bin | 10 | DESTDIR = $(OPIEDIR)/bin |
11 | TARGET = netsystemtime | 11 | TARGET = netsystemtime |
12 | 12 | ||
13 | 13 | TRANSLATIONS = ../../../i18n/de/netsystemtime.ts \ | |
14 | TRANSLATIONS = ../../../i18n/de/netsystemtime.ts | 14 | ../../../i18n/en/netsystemtime.ts \ |
15 | TRANSLATIONS += ../../../i18n/en/netsystemtime.ts | 15 | ../../../i18n/es/netsystemtime.ts \ |
16 | TRANSLATIONS += ../../../i18n/es/netsystemtime.ts | 16 | ../../../i18n/fr/netsystemtime.ts \ |
17 | TRANSLATIONS += ../../../i18n/fr/netsystemtime.ts | 17 | ../../../i18n/hu/netsystemtime.ts \ |
18 | TRANSLATIONS += ../../../i18n/hu/netsystemtime.ts | 18 | ../../../i18n/ja/netsystemtime.ts \ |
19 | TRANSLATIONS += ../../../i18n/ja/netsystemtime.ts | 19 | ../../../i18n/ko/netsystemtime.ts \ |
20 | TRANSLATIONS += ../../../i18n/ko/netsystemtime.ts | 20 | ../../../i18n/no/netsystemtime.ts \ |
21 | TRANSLATIONS += ../../../i18n/no//netsystemtime.ts | 21 | ../../../i18n/pl/netsystemtime.ts \ |
22 | TRANSLATIONS += ../../../i18n/pl/netsystemtime.ts | 22 | ../../../i18n/pt/netsystemtime.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt/netsystemtime.ts | 23 | ../../../i18n/pt_BR/netsystemtime.ts \ |
24 | TRANSLATIONS += ../../../i18n/pt_BR/netsystemtime.ts | 24 | ../../../i18n/sl/netsystemtime.ts \ |
25 | TRANSLATIONS += ../../../i18n/sl/netsystemtime.ts | 25 | ../../../i18n/zh_CN/netsystemtime.ts \ |
26 | TRANSLATIONS += ../../../i18n/zh_CN/netsystemtime.ts | 26 | ../../../i18n/zh_TW/netsystemtime.ts |
27 | TRANSLATIONS += ../../../i18n/zh_TW/netsystemtime.ts | ||
28 | |||
diff --git a/noncore/settings/sound/sound.pro b/noncore/settings/sound/sound.pro index c00a30d..a77ba28 100644 --- a/noncore/settings/sound/sound.pro +++ b/noncore/settings/sound/sound.pro | |||
@@ -1,28 +1,25 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = soundsettings.h soundsettingsbase.h | 4 | HEADERS = soundsettings.h soundsettingsbase.h |
5 | SOURCES = soundsettings.cpp soundsettingsbase.cpp main.cpp | 5 | SOURCES = soundsettings.cpp soundsettingsbase.cpp main.cpp |
6 | #INTERFACES = soundsettingsbase.ui | 6 | #INTERFACES = soundsettingsbase.ui |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += $(OPIEDIR)/include | 8 | DEPENDPATH += $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | TARGET = sound | 10 | TARGET = sound |
11 | 11 | ||
12 | 12 | TRANSLATIONS = ../../../i18n/de/sound.ts \ | |
13 | 13 | ../../../i18n/en/sound.ts \ | |
14 | TRANSLATIONS = ../../../i18n/de/sound.ts | 14 | ../../../i18n/es/sound.ts \ |
15 | TRANSLATIONS += ../../../i18n/en/sound.ts | 15 | ../../../i18n/fr/sound.ts \ |
16 | TRANSLATIONS += ../../../i18n/es/sound.ts | 16 | ../../../i18n/hu/sound.ts \ |
17 | TRANSLATIONS += ../../../i18n/fr/sound.ts | 17 | ../../../i18n/ja/sound.ts \ |
18 | TRANSLATIONS += ../../../i18n/hu/sound.ts | 18 | ../../../i18n/ko/sound.ts \ |
19 | TRANSLATIONS += ../../../i18n/ja/sound.ts | 19 | ../../../i18n/no/sound.ts \ |
20 | TRANSLATIONS += ../../../i18n/ko/sound.ts | 20 | ../../../i18n/pl/sound.ts \ |
21 | TRANSLATIONS += ../../../i18n/no/sound.ts | 21 | ../../../i18n/pt/sound.ts \ |
22 | TRANSLATIONS += ../../../i18n/pl/sound.ts | 22 | ../../../i18n/pt_BR/sound.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt/sound.ts | 23 | ../../../i18n/sl/sound.ts \ |
24 | TRANSLATIONS += ../../../i18n/pt_BR/sound.ts | 24 | ../../../i18n/zh_CN/sound.ts \ |
25 | TRANSLATIONS += ../../../i18n/sl/sound.ts | 25 | ../../../i18n/zh_TW/sound.ts |
26 | TRANSLATIONS += ../../../i18n/zh_CN/sound.ts | ||
27 | TRANSLATIONS += ../../../i18n/zh_TW/sound.ts | ||
28 | |||
diff --git a/noncore/settings/sysinfo/sysinfo.pro b/noncore/settings/sysinfo/sysinfo.pro index 88a20bb..c317677 100644 --- a/noncore/settings/sysinfo/sysinfo.pro +++ b/noncore/settings/sysinfo/sysinfo.pro | |||
@@ -1,42 +1,40 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = memory.h \ | 4 | HEADERS = memory.h \ |
5 | graph.h \ | 5 | graph.h \ |
6 | load.h \ | 6 | load.h \ |
7 | storage.h \ | 7 | storage.h \ |
8 | processinfo.h \ | 8 | processinfo.h \ |
9 | processdetail.h \ | 9 | processdetail.h \ |
10 | versioninfo.h \ | 10 | versioninfo.h \ |
11 | sysinfo.h | 11 | sysinfo.h |
12 | SOURCES = main.cpp \ | 12 | SOURCES = main.cpp \ |
13 | memory.cpp \ | 13 | memory.cpp \ |
14 | graph.cpp \ | 14 | graph.cpp \ |
15 | load.cpp \ | 15 | load.cpp \ |
16 | storage.cpp \ | 16 | storage.cpp \ |
17 | processinfo.cpp \ | 17 | processinfo.cpp \ |
18 | processdetail.cpp \ | 18 | processdetail.cpp \ |
19 | versioninfo.cpp \ | 19 | versioninfo.cpp \ |
20 | sysinfo.cpp | 20 | sysinfo.cpp |
21 | INTERFACES = | 21 | INTERFACES = |
22 | |||
23 | INCLUDEPATH += $(OPIEDIR)/include | 22 | INCLUDEPATH += $(OPIEDIR)/include |
24 | DEPENDPATH += $(OPIEDIR)/include | 23 | DEPENDPATH += $(OPIEDIR)/include |
25 | LIBS += -lqpe | 24 | LIBS += -lqpe |
26 | |||
27 | TARGET = sysinfo | 25 | TARGET = sysinfo |
28 | 26 | ||
29 | TRANSLATIONS = ../i18n/de/sysinfo.ts | 27 | TRANSLATIONS = ../../../i18n/de/sysinfo.ts \ |
30 | TRANSLATIONS += ../i18n/pt/sysinfo.ts | 28 | ../../../i18n/en/sysinfo.ts \ |
31 | TRANSLATIONS += ../i18n/pt_BR/sysinfo.ts | 29 | ../../../i18n/es/sysinfo.ts \ |
32 | TRANSLATIONS += ../i18n/en/sysinfo.ts | 30 | ../../../i18n/fr/sysinfo.ts \ |
33 | TRANSLATIONS += ../i18n/hu/sysinfo.ts | 31 | ../../../i18n/hu/sysinfo.ts \ |
34 | TRANSLATIONS += ../i18n/ja/sysinfo.ts | 32 | ../../../i18n/ja/sysinfo.ts \ |
35 | TRANSLATIONS += ../i18n/ko/sysinfo.ts | 33 | ../../../i18n/ko/sysinfo.ts \ |
36 | TRANSLATIONS += ../i18n/fr/sysinfo.ts | 34 | ../../../i18n/no/sysinfo.ts \ |
37 | TRANSLATIONS += ../i18n/no/sysinfo.ts | 35 | ../../../i18n/pl/sysinfo.ts \ |
38 | TRANSLATIONS += ../i18n/pl/sysinfo.ts | 36 | ../../../i18n/pt/sysinfo.ts \ |
39 | TRANSLATIONS += ../i18n/sl/sysinfo.ts | 37 | ../../../i18n/pt_BR/sysinfo.ts \ |
40 | TRANSLATIONS += ../i18n/zh_CN/sysinfo.ts | 38 | ../../../i18n/sl/sysinfo.ts \ |
41 | TRANSLATIONS += ../i18n/zh_TW/sysinfo.ts | 39 | ../../../i18n/zh_CN/sysinfo.ts \ |
42 | TRANSLATIONS += ../i18n/es/sysinfo.ts | 40 | ../../../i18n/zh_TW/sysinfo.ts |
diff --git a/noncore/settings/tabmanager/tabmanager.pro b/noncore/settings/tabmanager/tabmanager.pro index 53f7621..999c8b4 100644 --- a/noncore/settings/tabmanager/tabmanager.pro +++ b/noncore/settings/tabmanager/tabmanager.pro | |||
@@ -1,28 +1,26 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | #CONFIG = qt warn_on debug | 2 | #CONFIG = qt warn_on debug |
3 | CONFIG = qt warn_on release | 3 | CONFIG = qt warn_on release |
4 | HEADERS = tabmanager.h tabmainwindow.h app.h tablistview.h tabmanagerbase.h tabapplnk.h | 4 | HEADERS = tabmanager.h tabmainwindow.h app.h tablistview.h tabmanagerbase.h tabapplnk.h |
5 | SOURCES = main.cpp tabmanager.cpp app.cpp tabmanagerbase.cpp | 5 | SOURCES = main.cpp tabmanager.cpp app.cpp tabmanagerbase.cpp |
6 | INCLUDEPATH+= $(OPIEDIR)/include | 6 | INCLUDEPATH+= $(OPIEDIR)/include |
7 | DEPENDPATH+= $(OPIEDIR)/include | 7 | DEPENDPATH+= $(OPIEDIR)/include |
8 | LIBS += -lqpe | 8 | LIBS += -lqpe |
9 | #INTERFACES= tabmanagerbase.ui | 9 | #INTERFACES= tabmanagerbase.ui |
10 | TARGET = tabmanager | 10 | TARGET = tabmanager |
11 | DESTDIR = $(OPIEDIR)/bin | 11 | DESTDIR = $(OPIEDIR)/bin |
12 | 12 | ||
13 | 13 | TRANSLATIONS = ../../../i18n/de/tabmanager.ts \ | |
14 | TRANSLATIONS = ../../../i18n/de/tabmanager.ts | 14 | ../../../i18n/en/tabmanager.ts \ |
15 | TRANSLATIONS += ../../../i18n/en/tabmanager.ts | 15 | ../../../i18n/es/tabmanager.ts \ |
16 | TRANSLATIONS += ../../../i18n/es/tabmanager.ts | 16 | ../../../i18n/fr/tabmanager.ts \ |
17 | TRANSLATIONS += ../../../i18n/fr/tabmanager.ts | 17 | ../../../i18n/hu/tabmanager.ts \ |
18 | TRANSLATIONS += ../../../i18n/hu/tabmanager.ts | 18 | ../../../i18n/ja/tabmanager.ts \ |
19 | TRANSLATIONS += ../../../i18n/ja/tabmanager.ts | 19 | ../../../i18n/ko/tabmanager.ts \ |
20 | TRANSLATIONS += ../../../i18n/ko/tabmanager.ts | 20 | ../../../i18n/no/tabmanager.ts \ |
21 | TRANSLATIONS += ../../../i18n/no/tabmanager.ts | 21 | ../../../i18n/pl/tabmanager.ts \ |
22 | TRANSLATIONS += ../../../i18n/pl/tabmanager.ts | 22 | ../../../i18n/pt/tabmanager.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt/tabmanager.ts | 23 | ../../../i18n/pt_BR/tabmanager.ts \ |
24 | TRANSLATIONS += ../../../i18n/pt_BR/tabmanager.ts | 24 | ../../../i18n/sl/tabmanager.ts \ |
25 | TRANSLATIONS += ../../../i18n/sl/tabmanager.ts | 25 | ../../../i18n/zh_CN/tabmanager.ts \ |
26 | TRANSLATIONS += ../../../i18n/zh_CN/tabmanager.ts | 26 | ../../../i18n/zh_TW/tabmanager.ts |
27 | TRANSLATIONS += ../../../i18n/zh_TW/tabmanager.ts | ||
28 | |||
diff --git a/noncore/styles/liquid/liquid.pro b/noncore/styles/liquid/liquid.pro index b5dc1bc..8689d3d 100644 --- a/noncore/styles/liquid/liquid.pro +++ b/noncore/styles/liquid/liquid.pro | |||
@@ -1,19 +1,28 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | |||
3 | CONFIG = qt embedded release warn_on | 2 | CONFIG = qt embedded release warn_on |
4 | |||
5 | SOURCES = liquid.cpp \ | 3 | SOURCES = liquid.cpp \ |
6 | effects.cpp \ | 4 | effects.cpp \ |
7 | plugin.cpp | 5 | plugin.cpp |
8 | 6 | ||
9 | HEADERS = liquid.h \ | 7 | HEADERS = liquid.h \ |
10 | effects.h | 8 | effects.h |
11 | |||
12 | LIBS += -lqpe | 9 | LIBS += -lqpe |
13 | |||
14 | INCLUDEPATH += $(OPIEDIR)/include | 10 | INCLUDEPATH += $(OPIEDIR)/include |
15 | |||
16 | DESTDIR = $(OPIEDIR)/plugins/styles | 11 | DESTDIR = $(OPIEDIR)/plugins/styles |
17 | TARGET = liquid | 12 | TARGET = liquid |
13 | VERSION = 1.0.0 | ||
18 | 14 | ||
19 | VERSION = 1.0.0 \ No newline at end of file | 15 | TRANSLATIONS = ../../../i18n/de/libliquid.ts \ |
16 | ../../../i18n/en/libliquid.ts \ | ||
17 | ../../../i18n/es/libliquid.ts \ | ||
18 | ../../../i18n/fr/libliquid.ts \ | ||
19 | ../../../i18n/hu/libliquid.ts \ | ||
20 | ../../../i18n/ja/libliquid.ts \ | ||
21 | ../../../i18n/ko/libliquid.ts \ | ||
22 | ../../../i18n/no/libliquid.ts \ | ||
23 | ../../../i18n/pl/libliquid.ts \ | ||
24 | ../../../i18n/pt/libliquid.ts \ | ||
25 | ../../../i18n/pt_BR/libliquid.ts \ | ||
26 | ../../../i18n/sl/libliquid.ts \ | ||
27 | ../../../i18n/zh_CN/libliquid.ts \ | ||
28 | ../../../i18n/zh_TW/libliquid.ts | ||
diff --git a/noncore/styles/metal/metal.pro b/noncore/styles/metal/metal.pro index bfc235d..2abb8d8 100644 --- a/noncore/styles/metal/metal.pro +++ b/noncore/styles/metal/metal.pro | |||
@@ -1,11 +1,26 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG = qt embedded release warn_on | 2 | CONFIG = qt embedded release warn_on |
3 | SOURCES = metal.cpp plugin.cpp | 3 | SOURCES = metal.cpp plugin.cpp |
4 | 4 | ||
5 | HEADERS = metal.h | 5 | HEADERS = metal.h |
6 | LIBS += -lqpe | 6 | LIBS += -lqpe |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DESTDIR = $(OPIEDIR)/plugins/styles | 8 | DESTDIR = $(OPIEDIR)/plugins/styles |
9 | TARGET = metal | 9 | TARGET = metal |
10 | #TARGET = liquid | 10 | #TARGET = liquid |
11 | VERSION = 1.0.0 \ No newline at end of file | 11 | VERSION = 1.0.0 |
12 | |||
13 | TRANSLATIONS = ../../../i18n/de/libmetal liquid.ts \ | ||
14 | ../../../i18n/en/libmetal liquid.ts \ | ||
15 | ../../../i18n/es/libmetal liquid.ts \ | ||
16 | ../../../i18n/fr/libmetal liquid.ts \ | ||
17 | ../../../i18n/hu/libmetal liquid.ts \ | ||
18 | ../../../i18n/ja/libmetal liquid.ts \ | ||
19 | ../../../i18n/ko/libmetal liquid.ts \ | ||
20 | ../../../i18n/no/libmetal liquid.ts \ | ||
21 | ../../../i18n/pl/libmetal liquid.ts \ | ||
22 | ../../../i18n/pt/libmetal liquid.ts \ | ||
23 | ../../../i18n/pt_BR/libmetal liquid.ts \ | ||
24 | ../../../i18n/sl/libmetal liquid.ts \ | ||
25 | ../../../i18n/zh_CN/libmetal liquid.ts \ | ||
26 | ../../../i18n/zh_TW/libmetal liquid.ts | ||
diff --git a/noncore/tools/calc2/binary/binary.pro b/noncore/tools/calc2/binary/binary.pro index 1db454e..cf83612 100644 --- a/noncore/tools/calc2/binary/binary.pro +++ b/noncore/tools/calc2/binary/binary.pro | |||
@@ -1,33 +1,28 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG -= moc | 2 | CONFIG -= moc |
3 | CONFIG += qt release | 3 | CONFIG += qt release |
4 | |||
5 | # Input | 4 | # Input |
6 | INTERFACES += binary.ui | 5 | INTERFACES += binary.ui |
7 | HEADERS = binaryimpl.h \ | 6 | HEADERS = binaryimpl.h \ |
8 | binaryfactory.h | 7 | binaryfactory.h |
9 | SOURCES = binaryimpl.cpp \ | 8 | SOURCES = binaryimpl.cpp \ |
10 | binaryfactory.cpp | 9 | binaryfactory.cpp |
11 | |||
12 | INCLUDEPATH += $(OPIEDIR)/include \ | 10 | INCLUDEPATH += $(OPIEDIR)/include \ |
13 | $(OPIEDIR)/calc2 | 11 | $(OPIEDIR)/calc2 |
14 | DEPENDPATH += $(OPIEDIR)/include | 12 | DEPENDPATH += $(OPIEDIR)/include |
15 | |||
16 | DESTDIR = $(OPIEDIR)/plugins/calculator | 13 | DESTDIR = $(OPIEDIR)/plugins/calculator |
17 | 14 | ||
18 | 15 | TRANSLATIONS = ../../../../i18n/de/lib.ts \ | |
19 | TRANSLATIONS = ../../../../i18n/de/lib.ts | 16 | ../../../../i18n/en/lib.ts \ |
20 | TRANSLATIONS += ../../../../i18n/en/lib.ts | 17 | ../../../../i18n/es/lib.ts \ |
21 | TRANSLATIONS += ../../../../i18n/es/lib.ts | 18 | ../../../../i18n/fr/lib.ts \ |
22 | TRANSLATIONS += ../../../../i18n/fr/lib.ts | 19 | ../../../../i18n/hu/lib.ts \ |
23 | TRANSLATIONS += ../../../../i18n/hu/lib.ts | 20 | ../../../../i18n/ja/lib.ts \ |
24 | TRANSLATIONS += ../../../../i18n/ja/lib.ts | 21 | ../../../../i18n/ko/lib.ts \ |
25 | TRANSLATIONS += ../../../../i18n/ko/lib.ts | 22 | ../../../../i18n/no/lib.ts \ |
26 | TRANSLATIONS += ../../../../i18n/no/lib.ts | 23 | ../../../../i18n/pl/lib.ts \ |
27 | TRANSLATIONS += ../../../../i18n/pl/lib.ts | 24 | ../../../../i18n/pt/lib.ts \ |
28 | TRANSLATIONS += ../../../../i18n/pt/lib.ts | 25 | ../../../../i18n/pt_BR/lib.ts \ |
29 | TRANSLATIONS += ../../../../i18n/pt_BR/lib.ts | 26 | ../../../../i18n/sl/lib.ts \ |
30 | TRANSLATIONS += ../../../../i18n/sl/lib.ts | 27 | ../../../../i18n/zh_CN/lib.ts \ |
31 | TRANSLATIONS += ../../../../i18n/zh_CN/lib.ts | 28 | ../../../../i18n/zh_TW/lib.ts |
32 | TRANSLATIONS += ../../../../i18n/zh_TW/lib.ts | ||
33 | |||
diff --git a/noncore/tools/calc2/calc.pro b/noncore/tools/calc2/calc.pro index 5167f4a..5b58b36 100644 --- a/noncore/tools/calc2/calc.pro +++ b/noncore/tools/calc2/calc.pro | |||
@@ -1,28 +1,23 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG += qt release | 2 | CONFIG += qt release |
3 | |||
4 | # Input | 3 | # Input |
5 | HEADERS += calc.h plugininterface.h instruction.h engine.h stdinstructions.h | 4 | HEADERS += calc.h plugininterface.h instruction.h engine.h stdinstructions.h |
6 | SOURCES += calc.cpp main.cpp engine.cpp | 5 | SOURCES += calc.cpp main.cpp engine.cpp |
7 | |||
8 | INCLUDEPATH += $(OPIEDIR)/include | 6 | INCLUDEPATH += $(OPIEDIR)/include |
9 | DEPENDPATH += $(OPIEDIR)/include | 7 | DEPENDPATH += $(OPIEDIR)/include |
10 | LIBS += -lqpe -Wl,-export-dynamic | 8 | LIBS += -lqpe -Wl,-export-dynamic |
11 | 9 | ||
12 | 10 | TRANSLATIONS = ../../../i18n/de/calc.pro.in.ts \ | |
13 | 11 | ../../../i18n/en/calc.pro.in.ts \ | |
14 | TRANSLATIONS = ../../../i18n/de/calc.pro.in.ts | 12 | ../../../i18n/es/calc.pro.in.ts \ |
15 | TRANSLATIONS += ../../../i18n/en/calc.pro.in.ts | 13 | ../../../i18n/fr/calc.pro.in.ts \ |
16 | TRANSLATIONS += ../../../i18n/es/calc.pro.in.ts | 14 | ../../../i18n/hu/calc.pro.in.ts \ |
17 | TRANSLATIONS += ../../../i18n/fr/calc.pro.in.ts | 15 | ../../../i18n/ja/calc.pro.in.ts \ |
18 | TRANSLATIONS += ../../../i18n/hu/calc.pro.in.ts | 16 | ../../../i18n/ko/calc.pro.in.ts \ |
19 | TRANSLATIONS += ../../../i18n/ja/calc.pro.in.ts | 17 | ../../../i18n/no/calc.pro.in.ts \ |
20 | TRANSLATIONS += ../../../i18n/ko/calc.pro.in.ts | 18 | ../../../i18n/pl/calc.pro.in.ts \ |
21 | TRANSLATIONS += ../../../i18n/no/calc.pro.in.ts | 19 | ../../../i18n/pt/calc.pro.in.ts \ |
22 | TRANSLATIONS += ../../../i18n/pl/calc.pro.in.ts | 20 | ../../../i18n/pt_BR/calc.pro.in.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt/calc.pro.in.ts | 21 | ../../../i18n/sl/calc.pro.in.ts \ |
24 | TRANSLATIONS += ../../../i18n/pt_BR/calc.pro.in.ts | 22 | ../../../i18n/zh_CN/calc.pro.in.ts \ |
25 | TRANSLATIONS += ../../../i18n/sl/calc.pro.in.ts | 23 | ../../../i18n/zh_TW/calc.pro.in.ts |
26 | TRANSLATIONS += ../../../i18n/zh_CN/calc.pro.in.ts | ||
27 | TRANSLATIONS += ../../../i18n/zh_TW/calc.pro.in.ts | ||
28 | |||
diff --git a/noncore/tools/calc2/simple/simple.pro b/noncore/tools/calc2/simple/simple.pro index b0c8546..148d307 100644 --- a/noncore/tools/calc2/simple/simple.pro +++ b/noncore/tools/calc2/simple/simple.pro | |||
@@ -1,31 +1,26 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG -= moc | 2 | CONFIG -= moc |
3 | CONFIG += qt release | 3 | CONFIG += qt release |
4 | |||
5 | # Input | 4 | # Input |
6 | INTERFACES += simple.ui | 5 | INTERFACES += simple.ui |
7 | HEADERS = simpleimpl.h simplefactory.h stdinstructions.h | 6 | HEADERS = simpleimpl.h simplefactory.h stdinstructions.h |
8 | SOURCES = simpleimpl.cpp simplefactory.cpp | 7 | SOURCES = simpleimpl.cpp simplefactory.cpp |
9 | |||
10 | INCLUDEPATH += $(OPIEDIR)/include \ | 8 | INCLUDEPATH += $(OPIEDIR)/include \ |
11 | $(OPIEDIR)/calc2 | 9 | $(OPIEDIR)/calc2 |
12 | DEPENDPATH += $(OPIEDIR)/include | 10 | DEPENDPATH += $(OPIEDIR)/include |
13 | |||
14 | DESTDIR = $(OPIEDIR)/plugins/calculator | 11 | DESTDIR = $(OPIEDIR)/plugins/calculator |
15 | 12 | ||
16 | 13 | TRANSLATIONS = ../../../../i18n/de/lib.ts \ | |
17 | TRANSLATIONS = ../../../../i18n/de/lib.ts | 14 | ../../../../i18n/en/lib.ts \ |
18 | TRANSLATIONS += ../../../../i18n/en/lib.ts | 15 | ../../../../i18n/es/lib.ts \ |
19 | TRANSLATIONS += ../../../../i18n/es/lib.ts | 16 | ../../../../i18n/fr/lib.ts \ |
20 | TRANSLATIONS += ../../../../i18n/fr/lib.ts | 17 | ../../../../i18n/hu/lib.ts \ |
21 | TRANSLATIONS += ../../../../i18n/hu/lib.ts | 18 | ../../../../i18n/ja/lib.ts \ |
22 | TRANSLATIONS += ../../../../i18n/ja/lib.ts | 19 | ../../../../i18n/ko/lib.ts \ |
23 | TRANSLATIONS += ../../../../i18n/ko/lib.ts | 20 | ../../../../i18n/no/lib.ts \ |
24 | TRANSLATIONS += ../../../../i18n/no/lib.ts | 21 | ../../../../i18n/pl/lib.ts \ |
25 | TRANSLATIONS += ../../../../i18n/pl/lib.ts | 22 | ../../../../i18n/pt/lib.ts \ |
26 | TRANSLATIONS += ../../../../i18n/pt/lib.ts | 23 | ../../../../i18n/pt_BR/lib.ts \ |
27 | TRANSLATIONS += ../../../../i18n/pt_BR/lib.ts | 24 | ../../../../i18n/sl/lib.ts \ |
28 | TRANSLATIONS += ../../../../i18n/sl/lib.ts | 25 | ../../../../i18n/zh_CN/lib.ts \ |
29 | TRANSLATIONS += ../../../../i18n/zh_CN/lib.ts | 26 | ../../../../i18n/zh_TW/lib.ts |
30 | TRANSLATIONS += ../../../../i18n/zh_TW/lib.ts | ||
31 | |||
diff --git a/noncore/tools/calculator/calculator.pro b/noncore/tools/calculator/calculator.pro index 1058d98..8ede646 100644 --- a/noncore/tools/calculator/calculator.pro +++ b/noncore/tools/calculator/calculator.pro | |||
@@ -1,29 +1,26 @@ | |||
1 | DESTDIR = $(OPIEDIR)/bin | 1 | DESTDIR = $(OPIEDIR)/bin |
2 | TEMPLATE= app | 2 | TEMPLATE= app |
3 | CONFIG = qt warn_on release | 3 | CONFIG = qt warn_on release |
4 | HEADERS = calculatorimpl.h | 4 | HEADERS = calculatorimpl.h |
5 | SOURCES = calculatorimpl.cpp \ | 5 | SOURCES = calculatorimpl.cpp \ |
6 | main.cpp | 6 | main.cpp |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH+= $(OPIEDIR)/include | 8 | DEPENDPATH+= $(OPIEDIR)/include |
9 | LIBS += -lqpe | 9 | LIBS += -lqpe |
10 | INTERFACES= calculator.ui | 10 | INTERFACES= calculator.ui |
11 | TARGET = calculator | 11 | TARGET = calculator |
12 | 12 | ||
13 | 13 | TRANSLATIONS = ../../../i18n/de/calculator.ts \ | |
14 | 14 | ../../../i18n/en/calculator.ts \ | |
15 | TRANSLATIONS = ../../../i18n/de/calculator.ts | 15 | ../../../i18n/es/calculator.ts \ |
16 | TRANSLATIONS += ../../../i18n/en/calculator.ts | 16 | ../../../i18n/fr/calculator.ts \ |
17 | TRANSLATIONS += ../../../i18n/es/calculator.ts | 17 | ../../../i18n/hu/calculator.ts \ |
18 | TRANSLATIONS += ../../../i18n/fr/calculator.ts | 18 | ../../../i18n/ja/calculator.ts \ |
19 | TRANSLATIONS += ../../../i18n/hu/calculator.ts | 19 | ../../../i18n/ko/calculator.ts \ |
20 | TRANSLATIONS += ../../../i18n/ja/calculator.ts | 20 | ../../../i18n/no/calculator.ts \ |
21 | TRANSLATIONS += ../../../i18n/ko/calculator.ts | 21 | ../../../i18n/pl/calculator.ts \ |
22 | TRANSLATIONS += ../../../i18n/no/calculator.ts | 22 | ../../../i18n/pt/calculator.ts \ |
23 | TRANSLATIONS += ../../../i18n/pl/calculator.ts | 23 | ../../../i18n/pt_BR/calculator.ts \ |
24 | TRANSLATIONS += ../../../i18n/pt/calculator.ts | 24 | ../../../i18n/sl/calculator.ts \ |
25 | TRANSLATIONS += ../../../i18n/pt_BR/calculator.ts | 25 | ../../../i18n/zh_CN/calculator.ts \ |
26 | TRANSLATIONS += ../../../i18n/sl/calculator.ts | 26 | ../../../i18n/zh_TW/calculator.ts |
27 | TRANSLATIONS += ../../../i18n/zh_CN/calculator.ts | ||
28 | TRANSLATIONS += ../../../i18n/zh_TW/calculator.ts | ||
29 | |||
diff --git a/noncore/tools/clock/clock.pro b/noncore/tools/clock/clock.pro index 58d4e74..a61f514 100644 --- a/noncore/tools/clock/clock.pro +++ b/noncore/tools/clock/clock.pro | |||
@@ -1,29 +1,26 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = clock.h setAlarm.h | 4 | HEADERS = clock.h setAlarm.h |
5 | SOURCES = clock.cpp setAlarm.cpp \ | 5 | SOURCES = clock.cpp setAlarm.cpp \ |
6 | main.cpp | 6 | main.cpp |
7 | INCLUDEPATH += $(OPIEDIR)/include | 7 | INCLUDEPATH += $(OPIEDIR)/include |
8 | DEPENDPATH += $(OPIEDIR)/include | 8 | DEPENDPATH += $(OPIEDIR)/include |
9 | LIBS += -lqpe -lopie | 9 | LIBS += -lqpe -lopie |
10 | INTERFACES = | 10 | INTERFACES = |
11 | TARGET = clock | 11 | TARGET = clock |
12 | 12 | ||
13 | 13 | TRANSLATIONS = ../../../i18n/de/clock.ts \ | |
14 | 14 | ../../../i18n/en/clock.ts \ | |
15 | TRANSLATIONS = ../../../i18n/de/clock.ts | 15 | ../../../i18n/es/clock.ts \ |
16 | TRANSLATIONS += ../../../i18n/en/clock.ts | 16 | ../../../i18n/fr/clock.ts \ |
17 | TRANSLATIONS += ../../../i18n/es/clock.ts | 17 | ../../../i18n/hu/clock.ts \ |
18 | TRANSLATIONS += ../../../i18n/fr/clock.ts | 18 | ../../../i18n/ja/clock.ts \ |
19 | TRANSLATIONS += ../../../i18n/hu/clock.ts | 19 | ../../../i18n/ko/clock.ts \ |
20 | TRANSLATIONS += ../../../i18n/ja/clock.ts | 20 | ../../../i18n/no/clock.ts \ |
21 | TRANSLATIONS += ../../../i18n/ko/clock.ts | 21 | ../../../i18n/pl/clock.ts \ |
22 | TRANSLATIONS += ../../../i18n/no/clock.ts | 22 | ../../../i18n/pt/clock.ts \ |
23 | TRANSLATIONS += ../../../i18n/pl/clock.ts | 23 | ../../../i18n/pt_BR/clock.ts \ |
24 | TRANSLATIONS += ../../../i18n/pt/clock.ts | 24 | ../../../i18n/sl/clock.ts \ |
25 | TRANSLATIONS += ../../../i18n/pt_BR/clock.ts | 25 | ../../../i18n/zh_CN/clock.ts \ |
26 | TRANSLATIONS += ../../../i18n/sl/clock.ts | 26 | ../../../i18n/zh_TW/clock.ts |
27 | TRANSLATIONS += ../../../i18n/zh_CN/clock.ts | ||
28 | TRANSLATIONS += ../../../i18n/zh_TW/clock.ts | ||
29 | |||
diff --git a/noncore/tools/formatter/formatter.pro b/noncore/tools/formatter/formatter.pro index feb9bf7..c4f8298 100644 --- a/noncore/tools/formatter/formatter.pro +++ b/noncore/tools/formatter/formatter.pro | |||
@@ -1,27 +1,25 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release |
3 | HEADERS = formatter.h inputDialog.h output.h | 3 | HEADERS = formatter.h inputDialog.h output.h |
4 | SOURCES = formatter.cpp inputDialog.cpp output.cpp main.cpp | 4 | SOURCES = formatter.cpp inputDialog.cpp output.cpp main.cpp |
5 | TARGET = formatter | 5 | TARGET = formatter |
6 | REQUIRES = medium-config | 6 | REQUIRES = medium-config |
7 | DESTDIR = $(OPIEDIR)/bin | 7 | DESTDIR = $(OPIEDIR)/bin |
8 | INCLUDEPATH += $(OPIEDIR)/include | 8 | INCLUDEPATH += $(OPIEDIR)/include |
9 | DEPENDPATH += $(OPIEDIR)/include | 9 | DEPENDPATH += $(OPIEDIR)/include |
10 | LIBS += -lqpe | 10 | LIBS += -lqpe |
11 | 11 | ||
12 | 12 | TRANSLATIONS = ../../../i18n/de/formatter.ts \ | |
13 | TRANSLATIONS = ../../../i18n/de/formatter.ts | 13 | ../../../i18n/en/formatter.ts \ |
14 | TRANSLATIONS += ../../../i18n/en/formatter.ts | 14 | ../../../i18n/es/formatter.ts \ |
15 | TRANSLATIONS += ../../../i18n/es/formatter.ts | 15 | ../../../i18n/fr/formatter.ts \ |
16 | TRANSLATIONS += ../../../i18n/fr/formatter.ts | 16 | ../../../i18n/hu/formatter.ts \ |
17 | TRANSLATIONS += ../../../i18n/hu/formatter.ts | 17 | ../../../i18n/ja/formatter.ts \ |
18 | TRANSLATIONS += ../../../i18n/ja/formatter.ts | 18 | ../../../i18n/ko/formatter.ts \ |
19 | TRANSLATIONS += ../../../i18n/ko/formatter.ts | 19 | ../../../i18n/no/formatter.ts \ |
20 | TRANSLATIONS += ../../../i18n/no/formatter.ts | 20 | ../../../i18n/pl/formatter.ts \ |
21 | TRANSLATIONS += ../../../i18n/pl/formatter.ts | 21 | ../../../i18n/pt/formatter.ts \ |
22 | TRANSLATIONS += ../../../i18n/pt/formatter.ts | 22 | ../../../i18n/pt_BR/formatter.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt_BR/formatter.ts | 23 | ../../../i18n/sl/formatter.ts \ |
24 | TRANSLATIONS += ../../../i18n/sl/formatter.ts | 24 | ../../../i18n/zh_CN/formatter.ts \ |
25 | TRANSLATIONS += ../../../i18n/zh_CN/formatter.ts | 25 | ../../../i18n/zh_TW/formatter.ts |
26 | TRANSLATIONS += ../../../i18n/zh_TW/formatter.ts | ||
27 | |||
diff --git a/noncore/tools/opie-sh/opie-sh.pro b/noncore/tools/opie-sh/opie-sh.pro index e96aedc..0866f48 100644 --- a/noncore/tools/opie-sh/opie-sh.pro +++ b/noncore/tools/opie-sh/opie-sh.pro | |||
@@ -1,26 +1,24 @@ | |||
1 | TEMPLATE =app | 1 | TEMPLATE =app |
2 | CONFIG +=qt warn_on release | 2 | CONFIG +=qt warn_on release |
3 | DESTDIR =$(OPIEDIR)/bin | 3 | DESTDIR =$(OPIEDIR)/bin |
4 | HEADERS =mbox.h fviewer.h inputdialog.h | 4 | HEADERS =mbox.h fviewer.h inputdialog.h |
5 | SOURCES =opie-sh.cpp mbox.cpp fviewer.cpp inputdialog.cpp | 5 | SOURCES =opie-sh.cpp mbox.cpp fviewer.cpp inputdialog.cpp |
6 | INCLUDEPATH +=$(OPIEDIR)/include | 6 | INCLUDEPATH +=$(OPIEDIR)/include |
7 | DEPENDPATH +=$(OPIEDIR)/include | 7 | DEPENDPATH +=$(OPIEDIR)/include |
8 | LIBS +=-lqpe | 8 | LIBS +=-lqpe |
9 | TARGET = opie-sh | 9 | TARGET = opie-sh |
10 | 10 | ||
11 | 11 | TRANSLATIONS = ../../../i18n/de/opie-sh.ts \ | |
12 | TRANSLATIONS = ../../../i18n/de/opie-sh.ts | 12 | ../../../i18n/en/opie-sh.ts \ |
13 | TRANSLATIONS += ../../../i18n/en/opie-sh.ts | 13 | ../../../i18n/es/opie-sh.ts \ |
14 | TRANSLATIONS += ../../../i18n/es/opie-sh.ts | 14 | ../../../i18n/fr/opie-sh.ts \ |
15 | TRANSLATIONS += ../../../i18n/fr/opie-sh.ts | 15 | ../../../i18n/hu/opie-sh.ts \ |
16 | TRANSLATIONS += ../../../i18n/hu/opie-sh.ts | 16 | ../../../i18n/ja/opie-sh.ts \ |
17 | TRANSLATIONS += ../../../i18n/ja/opie-sh.ts | 17 | ../../../i18n/ko/opie-sh.ts \ |
18 | TRANSLATIONS += ../../../i18n/ko/opie-sh.ts | 18 | ../../../i18n/no/opie-sh.ts \ |
19 | TRANSLATIONS += ../../../i18n/no/opie-sh.ts | 19 | ../../../i18n/pl/opie-sh.ts \ |
20 | TRANSLATIONS += ../../../i18n/pl/opie-sh.ts | 20 | ../../../i18n/pt/opie-sh.ts \ |
21 | TRANSLATIONS += ../../../i18n/pt/opie-sh.ts | 21 | ../../../i18n/pt_BR/opie-sh.ts \ |
22 | TRANSLATIONS += ../../../i18n/pt_BR/opie-sh.ts | 22 | ../../../i18n/sl/opie-sh.ts \ |
23 | TRANSLATIONS += ../../../i18n/sl/opie-sh.ts | 23 | ../../../i18n/zh_CN/opie-sh.ts \ |
24 | TRANSLATIONS += ../../../i18n/zh_CN/opie-sh.ts | 24 | ../../../i18n/zh_TW/opie-sh.ts |
25 | TRANSLATIONS += ../../../i18n/zh_TW/opie-sh.ts | ||
26 | |||
diff --git a/noncore/tools/remote/remote.pro b/noncore/tools/remote/remote.pro index 033332d..9cd33d2 100644 --- a/noncore/tools/remote/remote.pro +++ b/noncore/tools/remote/remote.pro | |||
@@ -1,26 +1,24 @@ | |||
1 | TEMPLATE=app | 1 | TEMPLATE=app |
2 | CONFIG +=qt warn_on release | 2 | CONFIG +=qt warn_on release |
3 | DESTDIR =$(OPIEDIR)/bin | 3 | DESTDIR =$(OPIEDIR)/bin |
4 | HEADERS = remotetab.h learntab.h configtab.h topgroup.h dvdgroup.h channelgroup.h vcrgroup.h buttondialog.h topgroupconf.h dvdgroupconf.h channelgroupconf.h vcrgroupconf.h mainview.h | 4 | HEADERS = remotetab.h learntab.h configtab.h topgroup.h dvdgroup.h channelgroup.h vcrgroup.h buttondialog.h topgroupconf.h dvdgroupconf.h channelgroupconf.h vcrgroupconf.h mainview.h |
5 | SOURCES =remote.cpp remotetab.cpp learntab.cpp configtab.cpp topgroup.cpp dvdgroup.cpp channelgroup.cpp vcrgroup.cpp buttondialog.cpp topgroupconf.cpp dvdgroupconf.cpp channelgroupconf.cpp vcrgroupconf.cpp mainview.cpp | 5 | SOURCES =remote.cpp remotetab.cpp learntab.cpp configtab.cpp topgroup.cpp dvdgroup.cpp channelgroup.cpp vcrgroup.cpp buttondialog.cpp topgroupconf.cpp dvdgroupconf.cpp channelgroupconf.cpp vcrgroupconf.cpp mainview.cpp |
6 | INCLUDEPATH+=$(OPIEDIR)/include | 6 | INCLUDEPATH+=$(OPIEDIR)/include |
7 | DEPENDPATH+=$(OPIEDIR)/include | 7 | DEPENDPATH+=$(OPIEDIR)/include |
8 | LIBS +=-lqpe | 8 | LIBS +=-lqpe |
9 | TARGET = remote | 9 | TARGET = remote |
10 | 10 | ||
11 | 11 | TRANSLATIONS = ../../../i18n/de/remote.ts \ | |
12 | TRANSLATIONS = ../../../i18n/de/remote.ts | 12 | ../../../i18n/en/remote.ts \ |
13 | TRANSLATIONS += ../../../i18n/en/remote.ts | 13 | ../../../i18n/es/remote.ts \ |
14 | TRANSLATIONS += ../../../i18n/es/remote.ts | 14 | ../../../i18n/fr/remote.ts \ |
15 | TRANSLATIONS += ../../../i18n/fr/remote.ts | 15 | ../../../i18n/hu/remote.ts \ |
16 | TRANSLATIONS += ../../../i18n/hu/remote.ts | 16 | ../../../i18n/ja/remote.ts \ |
17 | TRANSLATIONS += ../../../i18n/ja/remote.ts | 17 | ../../../i18n/ko/remote.ts \ |
18 | TRANSLATIONS += ../../../i18n/ko/remote.ts | 18 | ../../../i18n/no/remote.ts \ |
19 | TRANSLATIONS += ../../../i18n/no/remote.ts | 19 | ../../../i18n/pl/remote.ts \ |
20 | TRANSLATIONS += ../../../i18n/pl/remote.ts | 20 | ../../../i18n/pt/remote.ts \ |
21 | TRANSLATIONS += ../../../i18n/pt/remote.ts | 21 | ../../../i18n/pt_BR/remote.ts \ |
22 | TRANSLATIONS += ../../../i18n/pt_BR/remote.ts | 22 | ../../../i18n/sl/remote.ts \ |
23 | TRANSLATIONS += ../../../i18n/sl/remote.ts | 23 | ../../../i18n/zh_CN/remote.ts \ |
24 | TRANSLATIONS += ../../../i18n/zh_CN/remote.ts | 24 | ../../../i18n/zh_TW/remote.ts |
25 | TRANSLATIONS += ../../../i18n/zh_TW/remote.ts | ||
26 | |||
diff --git a/noncore/unsupported/filebrowser/filebrowser.pro b/noncore/unsupported/filebrowser/filebrowser.pro index 3d9d49f..2849127 100644 --- a/noncore/unsupported/filebrowser/filebrowser.pro +++ b/noncore/unsupported/filebrowser/filebrowser.pro | |||
@@ -1,23 +1,24 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = $(OPIEDIR)/bin | 3 | DESTDIR = $(OPIEDIR)/bin |
4 | HEADERS = inlineedit.h filebrowser.h filePermissions.h | 4 | HEADERS = inlineedit.h filebrowser.h filePermissions.h |
5 | SOURCES = filebrowser.cpp inlineedit.cpp filePermissions.cpp main.cpp | 5 | SOURCES = filebrowser.cpp inlineedit.cpp filePermissions.cpp main.cpp |
6 | INCLUDEPATH += $(OPIEDIR)/include | 6 | INCLUDEPATH += $(OPIEDIR)/include |
7 | DEPENDPATH+= $(OPIEDIR)/include | 7 | DEPENDPATH+= $(OPIEDIR)/include |
8 | LIBS += -lqpe | 8 | LIBS += -lqpe |
9 | INTERFACES= | 9 | INTERFACES= |
10 | TRANSLATIONS = ../i18n/de/filebrowser.ts | 10 | |
11 | TRANSLATIONS += ../i18n/es/filebrowser.ts | 11 | TRANSLATIONS = ../../../i18n/de/filebrowser.pro.in.ts \ |
12 | TRANSLATIONS += ../i18n/pt/filebrowser.ts | 12 | ../../../i18n/en/filebrowser.pro.in.ts \ |
13 | TRANSLATIONS += ../i18n/pt_BR/filebrowser.ts | 13 | ../../../i18n/es/filebrowser.pro.in.ts \ |
14 | TRANSLATIONS += ../i18n/en/filebrowser.ts | 14 | ../../../i18n/fr/filebrowser.pro.in.ts \ |
15 | TRANSLATIONS += ../i18n/hu/filebrowser.ts | 15 | ../../../i18n/hu/filebrowser.pro.in.ts \ |
16 | TRANSLATIONS += ../i18n/ja/filebrowser.ts | 16 | ../../../i18n/ja/filebrowser.pro.in.ts \ |
17 | TRANSLATIONS += ../i18n/fr/filebrowser.ts | 17 | ../../../i18n/ko/filebrowser.pro.in.ts \ |
18 | TRANSLATIONS += ../i18n/sl/filebrowser.ts | 18 | ../../../i18n/no/filebrowser.pro.in.ts \ |
19 | TRANSLATIONS += ../i18n/ko/filebrowser.ts | 19 | ../../../i18n/pl/filebrowser.pro.in.ts \ |
20 | TRANSLATIONS += ../i18n/no/filebrowser.ts | 20 | ../../../i18n/pt/filebrowser.pro.in.ts \ |
21 | TRANSLATIONS += ../i18n/pl/filebrowser.ts | 21 | ../../../i18n/pt_BR/filebrowser.pro.in.ts \ |
22 | TRANSLATIONS += ../i18n/zh_CN/filebrowser.ts | 22 | ../../../i18n/sl/filebrowser.pro.in.ts \ |
23 | TRANSLATIONS += ../i18n/zh_TW/filebrowser.ts | 23 | ../../../i18n/zh_CN/filebrowser.pro.in.ts \ |
24 | ../../../i18n/zh_TW/filebrowser.pro.in.ts | ||
diff --git a/noncore/unsupported/gsmtool/gsmtool.pro b/noncore/unsupported/gsmtool/gsmtool.pro index 73bac50..d627075 100644 --- a/noncore/unsupported/gsmtool/gsmtool.pro +++ b/noncore/unsupported/gsmtool/gsmtool.pro | |||
@@ -1,31 +1,29 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | #CONFIG = qt warn_on debug | 2 | #CONFIG = qt warn_on debug |
3 | CONFIG = qt warn_on release | 3 | CONFIG = qt warn_on release |
4 | DESTDIR = $(OPIEDIR)/bin | 4 | DESTDIR = $(OPIEDIR)/bin |
5 | HEADERS = gsmtool.h | 5 | HEADERS = gsmtool.h |
6 | SOURCES = main.cpp gsmtool.cpp | 6 | SOURCES = main.cpp gsmtool.cpp |
7 | # This doesn't actually work... | 7 | # This doesn't actually work... |
8 | TMAKE_CXXFLAGS += -fexceptions | 8 | TMAKE_CXXFLAGS += -fexceptions |
9 | INCLUDEPATH+= $(OPIEDIR)/include | 9 | INCLUDEPATH+= $(OPIEDIR)/include |
10 | INCLUDEPATH+= $(GSMLIBDIR) | 10 | INCLUDEPATH+= $(GSMLIBDIR) |
11 | DEPENDPATH+= $(OPIEDIR)/include | 11 | DEPENDPATH+= $(OPIEDIR)/include |
12 | LIBS += -lqpe -L$(GSMLIBDIR)/gsmlib/.libs -lgsmme | 12 | LIBS += -lqpe -L$(GSMLIBDIR)/gsmlib/.libs -lgsmme |
13 | INTERFACES= gsmtoolbase.ui | 13 | INTERFACES= gsmtoolbase.ui |
14 | TARGET = gsmtool | 14 | TARGET = gsmtool |
15 | 15 | ||
16 | 16 | TRANSLATIONS = ../../../i18n/de/gsmtool.ts \ | |
17 | TRANSLATIONS = ../../../i18n/de/gsmtool.ts | 17 | ../../../i18n/en/gsmtool.ts \ |
18 | TRANSLATIONS += ../../../i18n/en/gsmtool.ts | 18 | ../../../i18n/es/gsmtool.ts \ |
19 | TRANSLATIONS += ../../../i18n/es/gsmtool.ts | 19 | ../../../i18n/fr/gsmtool.ts \ |
20 | TRANSLATIONS += ../../../i18n/fr/gsmtool.ts | 20 | ../../../i18n/hu/gsmtool.ts \ |
21 | TRANSLATIONS += ../../../i18n/hu/gsmtool.ts | 21 | ../../../i18n/ja/gsmtool.ts \ |
22 | TRANSLATIONS += ../../../i18n/ja/gsmtool.ts | 22 | ../../../i18n/ko/gsmtool.ts \ |
23 | TRANSLATIONS += ../../../i18n/ko/gsmtool.ts | 23 | ../../../i18n/no/gsmtool.ts \ |
24 | TRANSLATIONS += ../../../i18n/no/gsmtool.ts | 24 | ../../../i18n/pl/gsmtool.ts \ |
25 | TRANSLATIONS += ../../../i18n/pl/gsmtool.ts | 25 | ../../../i18n/pt/gsmtool.ts \ |
26 | TRANSLATIONS += ../../../i18n/pt/gsmtool.ts | 26 | ../../../i18n/pt_BR/gsmtool.ts \ |
27 | TRANSLATIONS += ../../../i18n/pt_BR/gsmtool.ts | 27 | ../../../i18n/sl/gsmtool.ts \ |
28 | TRANSLATIONS += ../../../i18n/sl/gsmtool.ts | 28 | ../../../i18n/zh_CN/gsmtool.ts \ |
29 | TRANSLATIONS += ../../../i18n/zh_CN/gsmtool.ts | 29 | ../../../i18n/zh_TW/gsmtool.ts |
30 | TRANSLATIONS += ../../../i18n/zh_TW/gsmtool.ts | ||
31 | |||
diff --git a/noncore/unsupported/mail2/bend/bend.pro b/noncore/unsupported/mail2/bend/bend.pro index bb96d76..fe0aed0 100644 --- a/noncore/unsupported/mail2/bend/bend.pro +++ b/noncore/unsupported/mail2/bend/bend.pro | |||
@@ -1,27 +1,25 @@ | |||
1 | TEMPLATE =lib | 1 | TEMPLATE =lib |
2 | CONFIG +=qt warn_on release | 2 | CONFIG +=qt warn_on release |
3 | HEADERS +=bend.h \ | 3 | HEADERS +=bend.h \ |
4 | bendimpl.h | 4 | bendimpl.h |
5 | SOURCES +=bend.cpp \ | 5 | SOURCES +=bend.cpp \ |
6 | bendimpl.cpp | 6 | bendimpl.cpp |
7 | INCLUDEPATH +=$(OPIEDIR)/include ../libmail | 7 | INCLUDEPATH +=$(OPIEDIR)/include ../libmail |
8 | LIBS +=-lmail -lqpe | 8 | LIBS +=-lmail -lqpe |
9 | TARGET =bend | 9 | TARGET =bend |
10 | DESTDIR +=$(OPIEDIR)/plugins/applets/ | 10 | DESTDIR +=$(OPIEDIR)/plugins/applets/ |
11 | 11 | ||
12 | 12 | TRANSLATIONS = ../../../i18n/de/libbend.ts \ | |
13 | TRANSLATIONS = ../../../i18n/de/libbend.ts | 13 | ../../../i18n/en/libbend.ts \ |
14 | TRANSLATIONS += ../../../i18n/en/libbend.ts | 14 | ../../../i18n/es/libbend.ts \ |
15 | TRANSLATIONS += ../../../i18n/es/libbend.ts | 15 | ../../../i18n/fr/libbend.ts \ |
16 | TRANSLATIONS += ../../../i18n/fr/libbend.ts | 16 | ../../../i18n/hu/libbend.ts \ |
17 | TRANSLATIONS += ../../../i18n/hu/libbend.ts | 17 | ../../../i18n/ja/libbend.ts \ |
18 | TRANSLATIONS += ../../../i18n/ja/libbend.ts | 18 | ../../../i18n/ko/libbend.ts \ |
19 | TRANSLATIONS += ../../../i18n/ko/libbend.ts | 19 | ../../../i18n/no/libbend.ts \ |
20 | TRANSLATIONS += ../../../i18n/no/libbend.ts | 20 | ../../../i18n/pl/libbend.ts \ |
21 | TRANSLATIONS += ../../../i18n/pl/libbend.ts | 21 | ../../../i18n/pt/libbend.ts \ |
22 | TRANSLATIONS += ../../../i18n/pt/libbend.ts | 22 | ../../../i18n/pt_BR/libbend.ts \ |
23 | TRANSLATIONS += ../../../i18n/pt_BR/libbend.ts | 23 | ../../../i18n/sl/libbend.ts \ |
24 | TRANSLATIONS += ../../../i18n/sl/libbend.ts | 24 | ../../../i18n/zh_CN/libbend.ts \ |
25 | TRANSLATIONS += ../../../i18n/zh_CN/libbend.ts | 25 | ../../../i18n/zh_TW/libbend.ts |
26 | TRANSLATIONS += ../../../i18n/zh_TW/libbend.ts | ||
27 | |||
diff --git a/noncore/unsupported/mail2/libmail/libmail.pro b/noncore/unsupported/mail2/libmail/libmail.pro index af65a3e..e80ecaf 100644 --- a/noncore/unsupported/mail2/libmail/libmail.pro +++ b/noncore/unsupported/mail2/libmail/libmail.pro | |||
@@ -1,41 +1,39 @@ | |||
1 | TEMPLATE =lib | 1 | TEMPLATE =lib |
2 | CONFIG =qt warn_on debug | 2 | CONFIG =qt warn_on debug |
3 | #CONFIG =qt warn_on release | 3 | #CONFIG =qt warn_on release |
4 | HEADERS =configfile.h \ | 4 | HEADERS =configfile.h \ |
5 | defines.h \ | 5 | defines.h \ |
6 | imapbase.h \ | 6 | imapbase.h \ |
7 | imaphandler.h \ | 7 | imaphandler.h \ |
8 | imapresponse.h \ | 8 | imapresponse.h \ |
9 | mailfactory.h \ | 9 | mailfactory.h \ |
10 | md5.cpp \ | 10 | md5.cpp \ |
11 | miscfunctions.h \ | 11 | miscfunctions.h \ |
12 | smtphandler.h | 12 | smtphandler.h |
13 | SOURCES =configfile.cpp \ | 13 | SOURCES =configfile.cpp \ |
14 | imapbase.cpp \ | 14 | imapbase.cpp \ |
15 | imaphandler.cpp \ | 15 | imaphandler.cpp \ |
16 | imapresponse.cpp \ | 16 | imapresponse.cpp \ |
17 | mailfactory.cpp \ | 17 | mailfactory.cpp \ |
18 | md5.h \ | 18 | md5.h \ |
19 | miscfunctions.cpp \ | 19 | miscfunctions.cpp \ |
20 | smtphandler.cpp | 20 | smtphandler.cpp |
21 | INCLUDEPATH +=$(OPIEDIR)/include | 21 | INCLUDEPATH +=$(OPIEDIR)/include |
22 | LIBS +=-L$(OPIEDIR)/lib -lqpe | 22 | LIBS +=-L$(OPIEDIR)/lib -lqpe |
23 | TARGET =mail | 23 | TARGET =mail |
24 | DESTDIR =$(QTDIR)/lib | 24 | DESTDIR =$(QTDIR)/lib |
25 | 25 | ||
26 | 26 | TRANSLATIONS = ../../../i18n/de/libmail.ts \ | |
27 | TRANSLATIONS = ../../../i18n/de/libmail.ts | 27 | ../../../i18n/en/libmail.ts \ |
28 | TRANSLATIONS += ../../../i18n/en/libmail.ts | 28 | ../../../i18n/es/libmail.ts \ |
29 | TRANSLATIONS += ../../../i18n/es/libmail.ts | 29 | ../../../i18n/fr/libmail.ts \ |
30 | TRANSLATIONS += ../../../i18n/fr/libmail.ts | 30 | ../../../i18n/hu/libmail.ts \ |
31 | TRANSLATIONS += ../../../i18n/hu/libmail.ts | 31 | ../../../i18n/ja/libmail.ts \ |
32 | TRANSLATIONS += ../../../i18n/ja/libmail.ts | 32 | ../../../i18n/ko/libmail.ts \ |
33 | TRANSLATIONS += ../../../i18n/ko/libmail.ts | 33 | ../../../i18n/no/libmail.ts \ |
34 | TRANSLATIONS += ../../../i18n/no/libmail.ts | 34 | ../../../i18n/pl/libmail.ts \ |
35 | TRANSLATIONS += ../../../i18n/pl/libmail.ts | 35 | ../../../i18n/pt/libmail.ts \ |
36 | TRANSLATIONS += ../../../i18n/pt/libmail.ts | 36 | ../../../i18n/pt_BR/libmail.ts \ |
37 | TRANSLATIONS += ../../../i18n/pt_BR/libmail.ts | 37 | ../../../i18n/sl/libmail.ts \ |
38 | TRANSLATIONS += ../../../i18n/sl/libmail.ts | 38 | ../../../i18n/zh_CN/libmail.ts \ |
39 | TRANSLATIONS += ../../../i18n/zh_CN/libmail.ts | 39 | ../../../i18n/zh_TW/libmail.ts |
40 | TRANSLATIONS += ../../../i18n/zh_TW/libmail.ts | ||
41 | |||
diff --git a/noncore/unsupported/mail2/mail.pro b/noncore/unsupported/mail2/mail.pro index 117c863..985a6fb 100644 --- a/noncore/unsupported/mail2/mail.pro +++ b/noncore/unsupported/mail2/mail.pro | |||
@@ -1,61 +1,59 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | CONFIG = qt warn_on debug | 2 | CONFIG = qt warn_on debug |
3 | #CONFIG = qt warn_on release | 3 | #CONFIG = qt warn_on release |
4 | HEADERS = accounteditor.h \ | 4 | HEADERS = accounteditor.h \ |
5 | addresspicker.h \ | 5 | addresspicker.h \ |
6 | composer.h \ | 6 | composer.h \ |
7 | composerbase.h \ | 7 | composerbase.h \ |
8 | configdiag.h \ | 8 | configdiag.h \ |
9 | folderwidget.h \ | 9 | folderwidget.h \ |
10 | listviewplus.h \ | 10 | listviewplus.h \ |
11 | mailtable.h \ | 11 | mailtable.h \ |
12 | mainwindow.h \ | 12 | mainwindow.h \ |
13 | mainwindowbase.h \ | 13 | mainwindowbase.h \ |
14 | opendiag.h \ | 14 | opendiag.h \ |
15 | rename.h \ | 15 | rename.h \ |
16 | searchdiag.h \ | 16 | searchdiag.h \ |
17 | viewmail.h \ | 17 | viewmail.h \ |
18 | viewmailbase.h | 18 | viewmailbase.h |
19 | SOURCES = accounteditor.cpp \ | 19 | SOURCES = accounteditor.cpp \ |
20 | addresspicker.cpp \ | 20 | addresspicker.cpp \ |
21 | composer.cpp \ | 21 | composer.cpp \ |
22 | composerbase.cpp \ | 22 | composerbase.cpp \ |
23 | configdiag.cpp \ | 23 | configdiag.cpp \ |
24 | folderwidget.cpp \ | 24 | folderwidget.cpp \ |
25 | listviewplus.cpp \ | 25 | listviewplus.cpp \ |
26 | mailtable.cpp \ | 26 | mailtable.cpp \ |
27 | main.cpp \ | 27 | main.cpp \ |
28 | mainwindow.cpp \ | 28 | mainwindow.cpp \ |
29 | mainwindowbase.cpp \ | 29 | mainwindowbase.cpp \ |
30 | opendiag.cpp \ | 30 | opendiag.cpp \ |
31 | rename.cpp \ | 31 | rename.cpp \ |
32 | searchdiag.cpp \ | 32 | searchdiag.cpp \ |
33 | viewmail.cpp \ | 33 | viewmail.cpp \ |
34 | viewmailbase.cpp | 34 | viewmailbase.cpp |
35 | INTERFACES = accounteditorbase.ui \ | 35 | INTERFACES = accounteditorbase.ui \ |
36 | addresspickerbase.ui \ | 36 | addresspickerbase.ui \ |
37 | configdiagbase.ui \ | 37 | configdiagbase.ui \ |
38 | opendiagbase.ui \ | 38 | opendiagbase.ui \ |
39 | renamebase.ui \ | 39 | renamebase.ui \ |
40 | searchdiagbase.ui | 40 | searchdiagbase.ui |
41 | INCLUDEPATH += $(OPIEDIR)/include libmail | 41 | INCLUDEPATH += $(OPIEDIR)/include libmail |
42 | LIBS += -lmail -lqpe -lopie | 42 | LIBS += -lmail -lqpe -lopie |
43 | TARGET = mail | 43 | TARGET = mail |
44 | DESTDIR = $(OPIEDIR)/bin | 44 | DESTDIR = $(OPIEDIR)/bin |
45 | 45 | ||
46 | 46 | TRANSLATIONS = ../../i18n/de/mail.ts \ | |
47 | TRANSLATIONS = ../../i18n/de/mail.ts | 47 | ../../i18n/en/mail.ts \ |
48 | TRANSLATIONS += ../../i18n/en/mail.ts | 48 | ../../i18n/es/mail.ts \ |
49 | TRANSLATIONS += ../../i18n/es/mail.ts | 49 | ../../i18n/fr/mail.ts \ |
50 | TRANSLATIONS += ../../i18n/fr/mail.ts | 50 | ../../i18n/hu/mail.ts \ |
51 | TRANSLATIONS += ../../i18n/hu/mail.ts | 51 | ../../i18n/ja/mail.ts \ |
52 | TRANSLATIONS += ../../i18n/ja/mail.ts | 52 | ../../i18n/ko/mail.ts \ |
53 | TRANSLATIONS += ../../i18n/ko/mail.ts | 53 | ../../i18n/no/mail.ts \ |
54 | TRANSLATIONS += ../../i18n/no/mail.ts | 54 | ../../i18n/pl/mail.ts \ |
55 | TRANSLATIONS += ../../i18n/pl/mail.ts | 55 | ../../i18n/pt/mail.ts \ |
56 | TRANSLATIONS += ../../i18n/pt/mail.ts | 56 | ../../i18n/pt_BR/mail.ts \ |
57 | TRANSLATIONS += ../../i18n/pt_BR/mail.ts | 57 | ../../i18n/sl/mail.ts \ |
58 | TRANSLATIONS += ../../i18n/sl/mail.ts | 58 | ../../i18n/zh_CN/mail.ts \ |
59 | TRANSLATIONS += ../../i18n/zh_CN/mail.ts | 59 | ../../i18n/zh_TW/mail.ts |
60 | TRANSLATIONS += ../../i18n/zh_TW/mail.ts | ||
61 | |||
diff --git a/noncore/unsupported/oipkg/oipkg.pro b/noncore/unsupported/oipkg/oipkg.pro index 7f60ed8..986cbcd 100644 --- a/noncore/unsupported/oipkg/oipkg.pro +++ b/noncore/unsupported/oipkg/oipkg.pro | |||
@@ -1,37 +1,51 @@ | |||
1 | DESTDIR = $(OPIEDIR)/bin | 1 | DESTDIR = $(OPIEDIR)/bin |
2 | TEMPLATE= app | 2 | TEMPLATE= app |
3 | #CONFIG = qt warn_on release | 3 | #CONFIG = qt warn_on release |
4 | CONFIG = qt warn_on debug | 4 | CONFIG = qt warn_on debug |
5 | HEADERS = mainwindow.h \ | 5 | HEADERS = mainwindow.h \ |
6 | pksettings.h \ | 6 | pksettings.h \ |
7 | pmipkg.h \ | 7 | pmipkg.h \ |
8 | packagelistdoclnk.h \ | 8 | packagelistdoclnk.h \ |
9 | installdialog.h \ | 9 | installdialog.h \ |
10 | utils.h \ | 10 | utils.h \ |
11 | packagelistitem.h \ | 11 | packagelistitem.h \ |
12 | packagelistremote.h \ | 12 | packagelistremote.h \ |
13 | packagelist.h \ | 13 | packagelist.h \ |
14 | packagelistlocal.h \ | 14 | packagelistlocal.h \ |
15 | packagelistview.h \ | 15 | packagelistview.h \ |
16 | package.h | 16 | package.h |
17 | SOURCES = main.cpp \ | 17 | SOURCES = main.cpp \ |
18 | mainwindow.cpp \ | 18 | mainwindow.cpp \ |
19 | utils.cpp \ | 19 | utils.cpp \ |
20 | packagelistdoclnk.cpp \ | 20 | packagelistdoclnk.cpp \ |
21 | packagelistview.cpp \ | 21 | packagelistview.cpp \ |
22 | installdialog.cpp \ | 22 | installdialog.cpp \ |
23 | packagelistremote.cpp \ | 23 | packagelistremote.cpp \ |
24 | packagelistlocal.cpp \ | 24 | packagelistlocal.cpp \ |
25 | pksettings.cpp \ | 25 | pksettings.cpp \ |
26 | pmipkg.cpp \ | 26 | pmipkg.cpp \ |
27 | packagelistitem.cpp \ | 27 | packagelistitem.cpp \ |
28 | packagelist.cpp \ | 28 | packagelist.cpp \ |
29 | package.cpp | 29 | package.cpp |
30 | INCLUDEPATH += $(OPIEDIR)/include | 30 | INCLUDEPATH += $(OPIEDIR)/include |
31 | DEPENDPATH+= $(OPIEDIR)/ioclude | 31 | DEPENDPATH+= $(OPIEDIR)/ioclude |
32 | LIBS += -lqpe | 32 | LIBS += -lqpe |
33 | LIBS += -lopie | 33 | LIBS += -lopie |
34 | INTERFACES= runwindow.ui \ | 34 | INTERFACES= runwindow.ui \ |
35 | pksettingsbase.ui | 35 | pksettingsbase.ui |
36 | TARGET = oipkg | 36 | TARGET = oipkg |
37 | 37 | ||
38 | TRANSLATIONS = ../../../i18n/de/oipkg.ts \ | ||
39 | ../../../i18n/en/oipkg.ts \ | ||
40 | ../../../i18n/es/oipkg.ts \ | ||
41 | ../../../i18n/fr/oipkg.ts \ | ||
42 | ../../../i18n/hu/oipkg.ts \ | ||
43 | ../../../i18n/ja/oipkg.ts \ | ||
44 | ../../../i18n/ko/oipkg.ts \ | ||
45 | ../../../i18n/no/oipkg.ts \ | ||
46 | ../../../i18n/pl/oipkg.ts \ | ||
47 | ../../../i18n/pt/oipkg.ts \ | ||
48 | ../../../i18n/pt_BR/oipkg.ts \ | ||
49 | ../../../i18n/sl/oipkg.ts \ | ||
50 | ../../../i18n/zh_CN/oipkg.ts \ | ||
51 | ../../../i18n/zh_TW/oipkg.ts | ||
diff --git a/noncore/unsupported/qpdf/qpdf.pro b/noncore/unsupported/qpdf/qpdf.pro index a5f7735..d2a553b 100644 --- a/noncore/unsupported/qpdf/qpdf.pro +++ b/noncore/unsupported/qpdf/qpdf.pro | |||
@@ -1,77 +1,69 @@ | |||
1 | TEMPLATE = app | 1 | TEMPLATE = app |
2 | |||
3 | CONFIG *= qt embedded release warn_off | 2 | CONFIG *= qt embedded release warn_off |
4 | CONFIG -= warn_on | 3 | CONFIG -= warn_on |
5 | |||
6 | SOURCES = xpdf/Array.cc \ | 4 | SOURCES = xpdf/Array.cc \ |
7 | xpdf/BuiltinFont.cc \ | 5 | xpdf/BuiltinFont.cc \ |
8 | xpdf/BuiltinFontTables.cc \ | 6 | xpdf/BuiltinFontTables.cc \ |
9 | xpdf/CMap.cc \ | 7 | xpdf/CMap.cc \ |
10 | xpdf/Catalog.cc \ | 8 | xpdf/Catalog.cc \ |
11 | xpdf/CharCodeToUnicode.cc \ | 9 | xpdf/CharCodeToUnicode.cc \ |
12 | xpdf/Decrypt.cc \ | 10 | xpdf/Decrypt.cc \ |
13 | xpdf/Dict.cc \ | 11 | xpdf/Dict.cc \ |
14 | xpdf/Error.cc \ | 12 | xpdf/Error.cc \ |
15 | xpdf/FontEncodingTables.cc \ | 13 | xpdf/FontEncodingTables.cc \ |
16 | xpdf/Annot.cc \ | 14 | xpdf/Annot.cc \ |
17 | xpdf/Function.cc \ | 15 | xpdf/Function.cc \ |
18 | xpdf/Gfx.cc \ | 16 | xpdf/Gfx.cc \ |
19 | xpdf/GfxFont.cc \ | 17 | xpdf/GfxFont.cc \ |
20 | xpdf/GfxState.cc \ | 18 | xpdf/GfxState.cc \ |
21 | xpdf/GlobalParams.cc \ | 19 | xpdf/GlobalParams.cc \ |
22 | xpdf/Lexer.cc \ | 20 | xpdf/Lexer.cc \ |
23 | xpdf/Link.cc \ | 21 | xpdf/Link.cc \ |
24 | xpdf/NameToCharCode.cc \ | 22 | xpdf/NameToCharCode.cc \ |
25 | xpdf/Object.cc \ | 23 | xpdf/Object.cc \ |
26 | xpdf/OutputDev.cc \ | 24 | xpdf/OutputDev.cc \ |
27 | xpdf/PDFDoc.cc \ | 25 | xpdf/PDFDoc.cc \ |
28 | xpdf/Page.cc \ | 26 | xpdf/Page.cc \ |
29 | xpdf/Parser.cc \ | 27 | xpdf/Parser.cc \ |
30 | xpdf/PSTokenizer.cc \ | 28 | xpdf/PSTokenizer.cc \ |
31 | xpdf/Stream.cc \ | 29 | xpdf/Stream.cc \ |
32 | xpdf/TextOutputDev.cc \ | 30 | xpdf/TextOutputDev.cc \ |
33 | xpdf/UnicodeMap.cc \ | 31 | xpdf/UnicodeMap.cc \ |
34 | xpdf/XRef.cc \ | 32 | xpdf/XRef.cc \ |
35 | goo/GHash.cc \ | 33 | goo/GHash.cc \ |
36 | goo/GString.cc \ | 34 | goo/GString.cc \ |
37 | goo/GList.cc \ | 35 | goo/GList.cc \ |
38 | QOutputDev.cpp \ | 36 | QOutputDev.cpp \ |
39 | QPEOutputDev.cpp \ | 37 | QPEOutputDev.cpp \ |
40 | qpdf.cpp \ | 38 | qpdf.cpp \ |
41 | qbusybar.cpp \ | 39 | qbusybar.cpp \ |
42 | gooStub.cpp | 40 | gooStub.cpp |
43 | |||
44 | HEADERS = QOutputDev.h \ | 41 | HEADERS = QOutputDev.h \ |
45 | QPEOutputDev.h \ | 42 | QPEOutputDev.h \ |
46 | qbusybar.h \ | 43 | qbusybar.h \ |
47 | qpdf.h | 44 | qpdf.h |
48 | |||
49 | INCLUDEPATH += . \ | 45 | INCLUDEPATH += . \ |
50 | .. \ | 46 | .. \ |
51 | xpdf \ | 47 | xpdf \ |
52 | $(OPIEDIR)/include \ | 48 | $(OPIEDIR)/include \ |
53 | ../goo \ | 49 | ../goo \ |
54 | goo | 50 | goo |
55 | 51 | ||
56 | LIBS += -L $(OPIEDIR)/lib -lqpe -lopie | 52 | LIBS += -L $(OPIEDIR)/lib -lqpe -lopie |
57 | |||
58 | DESTDIR = $(OPIEDIR)/bin | 53 | DESTDIR = $(OPIEDIR)/bin |
59 | TARGET = qpdf | 54 | TARGET = qpdf |
60 | 55 | ||
61 | 56 | TRANSLATIONS = ../../../i18n/de/qpdf.ts \ | |
62 | 57 | ../../../i18n/en/qpdf.ts \ | |
63 | TRANSLATIONS = ../../../i18n/de/qpdf.ts | 58 | ../../../i18n/es/qpdf.ts \ |
64 | TRANSLATIONS += ../../../i18n/en/qpdf.ts | 59 | ../../../i18n/fr/qpdf.ts \ |
65 | TRANSLATIONS += ../../../i18n/es/qpdf.ts | 60 | ../../../i18n/hu/qpdf.ts \ |
66 | TRANSLATIONS += ../../../i18n/fr/qpdf.ts | 61 | ../../../i18n/ja/qpdf.ts \ |
67 | TRANSLATIONS += ../../../i18n/hu/qpdf.ts | 62 | ../../../i18n/ko/qpdf.ts \ |
68 | TRANSLATIONS += ../../../i18n/ja/qpdf.ts | 63 | ../../../i18n/no/qpdf.ts \ |
69 | TRANSLATIONS += ../../../i18n/ko/qpdf.ts | 64 | ../../../i18n/pl/qpdf.ts \ |
70 | TRANSLATIONS += ../../../i18n/no/qpdf.ts | 65 | ../../../i18n/pt/qpdf.ts \ |
71 | TRANSLATIONS += ../../../i18n/pl/qpdf.ts | 66 | ../../../i18n/pt_BR/qpdf.ts \ |
72 | TRANSLATIONS += ../../../i18n/pt/qpdf.ts | 67 | ../../../i18n/sl/qpdf.ts \ |
73 | TRANSLATIONS += ../../../i18n/pt_BR/qpdf.ts | 68 | ../../../i18n/zh_CN/qpdf.ts \ |
74 | TRANSLATIONS += ../../../i18n/sl/qpdf.ts | 69 | ../../../i18n/zh_TW/qpdf.ts |
75 | TRANSLATIONS += ../../../i18n/zh_CN/qpdf.ts | ||
76 | TRANSLATIONS += ../../../i18n/zh_TW/qpdf.ts | ||
77 | |||
diff --git a/quickexec/quickexec.pro b/quickexec/quickexec.pro index 80fc945..cbf5db2 100644 --- a/quickexec/quickexec.pro +++ b/quickexec/quickexec.pro | |||
@@ -1,6 +1,21 @@ | |||
1 | TEMPLATE= app | 1 | TEMPLATE= app |
2 | CONFIG = qt warn_on release | 2 | CONFIG = qt warn_on release |
3 | DESTDIR = ../bin | 3 | DESTDIR = ../bin |
4 | HEADERS = | 4 | HEADERS = |
5 | SOURCES = quickexec.cpp | 5 | SOURCES = quickexec.cpp |
6 | LIBS += -ldl -lqpe | 6 | LIBS += -ldl -lqpe |
7 | |||
8 | TRANSLATIONS = ../i18n/de/quickexec.pro.in.ts \ | ||
9 | ../i18n/en/quickexec.pro.in.ts \ | ||
10 | ../i18n/es/quickexec.pro.in.ts \ | ||
11 | ../i18n/fr/quickexec.pro.in.ts \ | ||
12 | ../i18n/hu/quickexec.pro.in.ts \ | ||
13 | ../i18n/ja/quickexec.pro.in.ts \ | ||
14 | ../i18n/ko/quickexec.pro.in.ts \ | ||
15 | ../i18n/no/quickexec.pro.in.ts \ | ||
16 | ../i18n/pl/quickexec.pro.in.ts \ | ||
17 | ../i18n/pt/quickexec.pro.in.ts \ | ||
18 | ../i18n/pt_BR/quickexec.pro.in.ts \ | ||
19 | ../i18n/sl/quickexec.pro.in.ts \ | ||
20 | ../i18n/zh_CN/quickexec.pro.in.ts \ | ||
21 | ../i18n/zh_TW/quickexec.pro.in.ts | ||