Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2013-01-05 23:33:39 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2013-01-06 14:36:39 +0400
commitadf2c5877217cada8a5ea201b508135e6f50ef10 (patch)
tree0c133e90fd7d905e7bd3a269066cbfef8b151968 /build.bat
parent764f49d405a624951edf392eb55fb1743b1482e0 (diff)
build.bat: fix MSBuild Platform property
Diffstat (limited to 'build.bat')
-rw-r--r--build.bat8
1 files changed, 4 insertions, 4 deletions
diff --git a/build.bat b/build.bat
index e503f6000..e573a58f4 100644
--- a/build.bat
+++ b/build.bat
@@ -188,7 +188,7 @@ REM Call update_version.bat before building the filters
CALL "update_version.bat"
MSBuild.exe mpc-hc.sln %MSBUILD_SWITCHES%^
- /target:%BUILDTYPE% /property:Configuration="%BUILDCFG% Filter";PPLATFORM=%1^
+ /target:%BUILDTYPE% /property:Configuration="%BUILDCFG% Filter";Platform=%1^
/flp1:LogFile=%LOG_DIR%\filters_errors_%BUILDCFG%_%1.log;errorsonly;Verbosity=diagnostic^
/flp2:LogFile=%LOG_DIR%\filters_warnings_%BUILDCFG%_%1.log;warningsonly;Verbosity=diagnostic
IF %ERRORLEVEL% NEQ 0 (
@@ -205,7 +205,7 @@ IF %ERRORLEVEL% NEQ 0 EXIT /B
TITLE Compiling MPC-HC - %BUILDCFG%^|%1...
MSBuild.exe mpc-hc.sln %MSBUILD_SWITCHES%^
- /target:%BUILDTYPE% /property:Configuration="%BUILDCFG%";PPLATFORM=%1^
+ /target:%BUILDTYPE% /property:Configuration="%BUILDCFG%";Platform=%1^
/flp1:LogFile="%LOG_DIR%\mpc-hc_errors_%BUILDCFG%_%1.log";errorsonly;Verbosity=diagnostic^
/flp2:LogFile="%LOG_DIR%\mpc-hc_warnings_%BUILDCFG%_%1.log";warningsonly;Verbosity=diagnostic
IF %ERRORLEVEL% NEQ 0 (
@@ -240,7 +240,7 @@ IF %ERRORLEVEL% NEQ 0 EXIT /B
TITLE Compiling mpciconlib - Release^|%1...
MSBuild.exe mpciconlib.sln %MSBUILD_SWITCHES%^
- /target:%BUILDTYPE% /property:Configuration=Release;PPLATFORM=%1
+ /target:%BUILDTYPE% /property:Configuration=Release;Platform=%1
IF %ERRORLEVEL% NEQ 0 (
CALL :SubMsg "ERROR" "mpciconlib.sln %1 - Compilation failed!"
EXIT /B
@@ -260,7 +260,7 @@ FOR %%G IN ("Armenian" "Basque" "Belarusian" "Catalan" "Chinese Simplified"
) DO (
TITLE Compiling mpcresources - %%~G^|%1...
MSBuild.exe mpcresources.sln %MSBUILD_SWITCHES%^
- /target:%BUILDTYPE% /property:Configuration="Release %%~G";PPLATFORM=%1
+ /target:%BUILDTYPE% /property:Configuration="Release %%~G";Platform=%1
IF %ERRORLEVEL% NEQ 0 CALL :SubMsg "ERROR" "Compilation failed!" & EXIT /B
)
EXIT /B