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:
parent
3356fb81ce
commit
fad760cc1d
1 changed files with 2 additions and 2 deletions
|
@ -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=$?
|
||||||
|
|
Loading…
Reference in a new issue