link images/ from qtgui to qt4gui

This commit is contained in:
dockes 2007-02-06 10:18:05 +00:00
parent 0466ac1ffb
commit 6600c2b4c7

View File

@ -1,5 +1,12 @@
#!/bin/sh
# Prepare the qt4 gui directory for compilation. This is called by "configure"
# Convert the uic files from qt3 to qt4.
for i in ../qtgui/*.ui ; do
echo converting $i
uic3 -convert $i > ../qt4gui/`basename $i`
done
# Link the images
ln -s ../qtgui/images .