forked from mirror/openmw-tes3mp
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
|
||||
|
||||
if [ -z $APPVEYOR ]; then
|
||||
msbuild OpenMW.sln //t:Build //m:8
|
||||
msbuild OpenMW.sln //t:Build //p:Configuration=${CONFIGURATION} //m:8
|
||||
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
|
||||
|
||||
RET=$?
|
||||
|
|
Loading…
Reference in a new issue