view compile-ui.sh @ 16:d211d01efa44

Re #242: Create Qt# UI for WarFoundry * Fix MonoDevelop's annoying auto-formatting * Remove debugging "true" from IF condition
author IBBoard <dev@ibboard.co.uk>
date Sat, 13 Feb 2010 19:45:08 +0000
parents 4ff09911ef64
children
line wrap: on
line source

#! /bin/bash

echo "Compiling .ui files to C#"

for uiFile in qt-gui/*.ui
do
	csFile=${uiFile/.ui/.cs}
	
	# Only update if file has changed
	if test $uiFile -nt $csFile
	then
		echo -ne "  * Compiling $uiFile..."
		uics -o $csFile $uiFile
		echo "...compiled."
	else
		echo "  * Skipping $uiFile - no update needed"
	fi
done

echo