view compile-ui.sh @ 10:3d0c9cf1b924

Fixes #243: Create "New Army" dialog in Qt# app * Make dialog not show in task bar (add parent to constructor) * Add methods to retrieve values Re #242: Create Qt# UI for WarFoundry * Copy lots of implementation from the WinForms app to get some core army loading working (looks like we need to investigate refactoring commonality)
author IBBoard <dev@ibboard.co.uk>
date Tue, 02 Feb 2010 20:56:39 +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