You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
524 B
26 lines
524 B
15 years ago
|
#!/bin/sh
|
||
|
|
||
|
UIC="uic -tr i18n"
|
||
|
PAGES="path misc lookandfeel"
|
||
|
WIZARDS="config"
|
||
|
OTHERS=""
|
||
|
|
||
|
for i in ${PAGES}; do
|
||
|
${UIC} -o ${i}config.h ${i}config.ui
|
||
|
${UIC} -o ${i}config.cpp -impl ${i}config.h ${i}config.ui
|
||
|
done
|
||
|
|
||
|
for i in ${WIZARDS}; do
|
||
|
n="${i}wizard"
|
||
|
${UIC} -o ${n}.h ${n}.ui
|
||
|
${UIC} -o ${n}.cpp -impl ${n}.h ${n}.ui
|
||
|
|
||
|
perl -pi -e "s/qwizard\.h/kwizard\.h/" ${n}.h
|
||
|
perl -pi -e "s/QWizard/KWizard/" ${n}.{cpp,h}
|
||
|
done
|
||
|
|
||
|
for i in ${OTHERS}; do
|
||
|
${UIC} -o ${i}.h ${i}.ui
|
||
|
${UIC} -o ${i}.cpp -impl ${i}.h ${i}.ui
|
||
|
done
|