Parent: [6600c2] (diff)

Child: [edada9] (diff)

Download this file

uifrom3    14 lines (10 with data), 292 Bytes

#!/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
rm -f images
ln -s ../qtgui/images .