Set the correct names of the generated executable files on Symbian and Windows.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@3054 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
Meep-Eep
2008-08-23 20:15:21 +00:00
parent 6aeb1e5ab1
commit a4fc0fc7ef
+8
View File
@@ -8,6 +8,14 @@ else
uqm_OBJS=obj/release/ # Directory for object files uqm_OBJS=obj/release/ # Directory for object files
uqm_NAME=uqm # File name of executable uqm_NAME=uqm # File name of executable
fi fi
case "$HOST_SYSTEM" in
ARMV5|WINSCW)
uqm_NAME="$uqm_NAME.lib"
;;
MINGW32*|CYGWIN*)
uqm_NAME="$uqm_NAME.exe"
;;
esac
uqm_CFLAGS="$uqm_CFLAGS -Isrc -Isrc/sc2code -Isrc/sc2code/libs" uqm_CFLAGS="$uqm_CFLAGS -Isrc -Isrc/sc2code -Isrc/sc2code/libs"
if [ "$uqm_HAVE_REGEX" = 0 ]; then if [ "$uqm_HAVE_REGEX" = 0 ]; then
uqm_CFLAGS="$uqm_CFLAGS -Isrc/regex" uqm_CFLAGS="$uqm_CFLAGS -Isrc/regex"