You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw-tes3mp/CI/build.msvc.sh

18 lines
361 B
Bash

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