2015-06-02 21:11:09 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-06-02 21:50:52 +00:00
|
|
|
case $PLATFORM in
|
|
|
|
x32|x86|i686|i386|win32|Win32 )
|
2015-06-02 21:29:47 +00:00
|
|
|
BITS=32 ;;
|
2015-06-02 21:11:09 +00:00
|
|
|
|
2015-06-02 21:50:52 +00:00
|
|
|
x64|x86_64|x86-64|win64|Win64 )
|
2015-06-02 21:29:47 +00:00
|
|
|
BITS=64 ;;
|
2015-06-02 21:11:09 +00:00
|
|
|
|
2015-06-02 21:29:47 +00:00
|
|
|
* )
|
2015-06-02 21:50:52 +00:00
|
|
|
echo "Unknown platform $PLATFORM."
|
2015-06-02 21:29:47 +00:00
|
|
|
exit 1 ;;
|
|
|
|
esac
|
2015-06-02 21:11:09 +00:00
|
|
|
|
|
|
|
cd $(dirname $0)/../build_$BITS
|
|
|
|
|
2015-06-02 21:50:52 +00:00
|
|
|
msbuild OpenMW.sln //t:Build //p:Configuration=$CONFIGURATION //m:8 //logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|