1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 15:29:55 +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=$?