1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-04-16 17:42:31 +00:00

msbuild was always defaulting to building the Debug configuration so it was impossible to build any other configurations with build.msvc.sh

This commit is contained in:
tlmullis 2017-06-19 05:49:04 -07:00
parent 3356fb81ce
commit fad760cc1d

View File

@ -77,9 +77,9 @@ if [ $? -ne 0 ]; then
fi fi
if [ -z $APPVEYOR ]; then if [ -z $APPVEYOR ]; then
msbuild OpenMW.sln //t:Build //m:8 msbuild OpenMW.sln //t:Build //p:Configuration=${CONFIGURATION} //m:8
else else
msbuild OpenMW.sln //t:Build //m:8 //logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" msbuild OpenMW.sln //t:Build //p:Configuration=${CONFIGURATION} //m:8 //logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
fi fi
RET=$? RET=$?