Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/13/18 13:04:36 (6 years ago)
Author:
ddorfmei
Message:

#2931: project upgrades and changes to building

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2931_OR-Tools_LP_MIP/Build.cmd

    r15682 r16138  
    7474
    7575:main
    76 REM First find the path to the msbuild.exe by performing a registry query
    77 FOR /F "tokens=1,3 delims=   " %%A IN ('REG QUERY "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSBuild\ToolsVersions\4.0"') DO (
    78   IF "%%A"=="MSBuildToolsPath" SET MSBUILDPATH=%%B)
    79 
    8076REM Then execute msbuild to clean and build the solution
    8177REM Disable that msbuild creates a cache file of the solution
     
    8480IF "%CLEANBEFOREBUILD%" NEQ "n" (
    8581  ECHO Cleaning ...
    86   %MSBUILDPATH%msbuild.exe %SELECTED% /target:Clean /p:Configuration="%CONFIGURATION%",Platform="%PLATFORM%" /m:2 /nologo /verbosity:q /clp:ErrorsOnly
     82  msbuild.exe %SELECTED% /target:Clean /p:Configuration="%CONFIGURATION%",Platform="%PLATFORM%" /m:2 /nologo /verbosity:q /clp:ErrorsOnly
    8783)
    8884ECHO Building ...
    89 %MSBUILDPATH%msbuild.exe %SELECTED% /target:Build /p:Configuration="%CONFIGURATION%",Platform="%PLATFORM%" /m:2 /nologo /verbosity:q /clp:ErrorsOnly
     85msbuild.exe %SELECTED% /target:Build /p:Configuration="%CONFIGURATION%",Platform="%PLATFORM%" /m:2 /nologo /verbosity:q /clp:ErrorsOnly
    9086
    9187ECHO.
Note: See TracChangeset for help on using the changeset viewer.