/external/python/cpython3/PCbuild/ |
D | find_msbuild.bat | 2 @rem Searches for MSBuild.exe. This is the only tool we need to initiate 6 @rem the MSBUILD variable), so we do not use setlocal or echo, and avoid 19 @if exist "%*" (set MSBUILD="%*") & (set _Py_MSBuild_Source=environment) & goto :found variable 23 @if exist "%~1" (set MSBUILD="%~1") & (set _Py_MSBuild_Source=environment) & goto :found variable 26 @set MSBUILD= variable 28 @rem If msbuild.exe is on the PATH, assume that the user wants that one. 29 @where msbuild > "%TEMP%\msbuild.loc" 2> nul && set /P MSBUILD= < "%TEMP%\msbuild.loc" & del "%TEMP… 30 @if exist "%MSBUILD%" set MSBUILD="%MSBUILD%" & (set _Py_MSBuild_Source=PATH) & goto :found variable 35 …requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64') DO @(set _Py_MSBuild_Root=%%i\MSBuild) 37 …5.0) DO @if exist "%_Py_MSBuild_Root%\%%j\Bin\msbuild.exe" (set MSBUILD="%_Py_MSBuild_Root%\%%j\Bi… variable [all …]
|
D | build.bat | 4 echo.%~nx0 [flags and arguments] [quoted MSBuild options] 10 echo.directly to MSBuild may be passed. If the argument contains an '=', the 12 echo.Alternatively you can put extra flags for MSBuild in a file named 13 echo.`msbuild.rsp` in the `PCbuild` directory, one flag per line. This file 14 echo.will be picked automatically by MSBuild. Flags put in this file does not 86 rem These use the actual property names used by MSBuild. We could just let 116 call "%dir%find_msbuild.bat" %MSBUILD% 117 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2) 143 %MSBUILD% "%dir%\pythoncore.vcxproj" /t:KillPython %verbose%^ 151 rem Call on MSBuild to do the work, echo the command. [all …]
|
D | prepare_tcltk.bat | 41 call "%PCBUILD%\find_msbuild.bat" %MSBUILD% 42 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2) 49 %MSBUILD% "%PCBUILD%\tcl.vcxproj" /p:Configuration=Release /p:Platform=Win32 50 %MSBUILD% "%PCBUILD%\tk.vcxproj" /p:Configuration=Release /p:Platform=Win32 51 %MSBUILD% "%PCBUILD%\tix.vcxproj" /p:Configuration=Release /p:Platform=Win32 53 %MSBUILD% "%PCBUILD%\tcl.vcxproj" /p:Configuration=Release /p:Platform=x64 54 %MSBUILD% "%PCBUILD%\tk.vcxproj" /p:Configuration=Release /p:Platform=x64 55 %MSBUILD% "%PCBUILD%\tix.vcxproj" /p:Configuration=Release /p:Platform=x64
|
D | prepare_ssl.bat | 39 call "%PCBUILD%\find_msbuild.bat" %MSBUILD% 40 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2) 50 %MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=Win32 52 %MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=x64 54 %MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=ARM 56 %MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=ARM64
|
D | python.props | 2 <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 26 Convincing MSVC/MSBuild to prefer our platform names is too difficult, 100 let the MSBuild targets determine which one it wants to use (typically the earliest 182 <PythonVersionHex>$([msbuild]::BitwiseOr( 183 $([msbuild]::Multiply($(MajorVersionNumber), 16777216)), 184 $([msbuild]::BitwiseOr( 185 $([msbuild]::Multiply($(MinorVersionNumber), 65536)), 186 $([msbuild]::BitwiseOr( 187 $([msbuild]::Multiply($(MicroVersionNumber), 256)), 188 $([msbuild]::BitwiseOr( [all …]
|
D | pcbuild.proj | 2 …aultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 84 <MSBuild Projects="@(Projects)" 89 <MSBuild Projects="@(Projects2)" 97 <MSBuild Projects="@(Projects2)" 103 <MSBuild Projects="@(Projects)" 112 <MSBuild Projects="@(Projects2)" 118 <MSBuild Projects="@(Projects)"
|
/external/python/cpython2/PCbuild/ |
D | find_msbuild.bat | 2 @rem Searches for MSBuild.exe. This is the only tool we need to initiate 6 @rem the MSBUILD variable), so we do not use setlocal or echo, and avoid 19 @if exist "%*" (set MSBUILD="%*") & (set _Py_MSBuild_Source=environment) & goto :found variable 23 @if exist "%~1" (set MSBUILD="%~1") & (set _Py_MSBuild_Source=environment) & goto :found variable 26 @set MSBUILD= variable 28 @rem If msbuild.exe is on the PATH, assume that the user wants that one. 29 @msbuild /version > nul 2>&1 30 @if NOT ERRORLEVEL 9009 set MSBUILD=msbuild & (set _Py_MSBuild_Source=PATH) & goto :found variable 32 @rem VS 2015 and earlier register MSBuild separately, so we can find it. 33 @rem Prefer MSBuild 14.0 over MSBuild 15.0, since the latter may not be able to find a VC14 install. [all …]
|
D | python.props | 2 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 17 Convincing MSVC/MSBuild to prefer our platform names is too difficult, 79 <PythonVersionHex>$([msbuild]::BitwiseOr( 80 $([msbuild]::Multiply($(MajorVersionNumber), 16777216)), 81 $([msbuild]::BitwiseOr( 82 $([msbuild]::Multiply($(MinorVersionNumber), 65536)), 83 $([msbuild]::BitwiseOr( 84 $([msbuild]::Multiply($(MicroVersionNumber), 256)), 85 $([msbuild]::BitwiseOr( 86 $([msbuild]::Multiply($(ReleaseLevelNumber), 16)), [all …]
|
D | build.bat | 4 echo.%~nx0 [flags and arguments] [quoted MSBuild options] 10 echo.directly to MSBuild may be passed. If the argument contains an '=', the 12 echo.Alternatively you can put extra flags for MSBuild in a file named 13 echo.`msbuild.rsp` in the `PCbuild` directory, one flag per line. This file 14 echo.will be picked automatically by MSBuild. Flags put in this file does not 75 rem These use the actual property names used by MSBuild. We could just let 103 call "%dir%find_msbuild.bat" %MSBUILD% 104 if ERRORLEVEL 1 (call "%dir%env.bat" && set MSBUILD=msbuild) variable 124 %MSBUILD% "%dir%\pythoncore.vcxproj" /t:KillPython %verbose%^ 132 rem Call on MSBuild to do the work, echo the command. [all …]
|
/external/zstd/build/VS_scripts/ |
D | build.generic.cmd | 31 SET msbuild="%windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" 32 …community="%programfiles(x86)%\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\MSBuild.exe" 33 …sional="%programfiles(x86)%\Microsoft Visual Studio\2017\Professional\MSBuild\15.0\Bin\MSBuild.exe" 34 …terprise="%programfiles(x86)%\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\MSBuild.exe" 35 IF %msbuild_version% == VS2013 SET msbuild="%programfiles(x86)%\MSBuild\12.0\Bin\MSBuild.exe" 36 IF %msbuild_version% == VS2015 SET msbuild="%programfiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe" 37 IF %msbuild_version% == VS2017Community SET msbuild=%msbuild_vs2017community% 38 IF %msbuild_version% == VS2017Professional SET msbuild=%msbuild_vs2017professional% 39 IF %msbuild_version% == VS2017Enterprise SET msbuild=%msbuild_vs2017enterprise% 41 IF EXIST %msbuild_vs2017community% SET msbuild=%msbuild_vs2017community% [all …]
|
/external/llvm/tools/msbuild/ |
D | CMakeLists.txt | 43 … "${CMAKE_CURRENT_BINARY_DIR}/${platform}/${prop_file_v100}" DESTINATION tools/msbuild/${platform}) 44 … "${CMAKE_CURRENT_BINARY_DIR}/${platform}/${prop_file_v110}" DESTINATION tools/msbuild/${platform}) 45 …{CMAKE_CURRENT_BINARY_DIR}/${platform}/${prop_file_v110_xp}" DESTINATION tools/msbuild/${platform}) 46 … "${CMAKE_CURRENT_BINARY_DIR}/${platform}/${prop_file_v120}" DESTINATION tools/msbuild/${platform}) 47 …{CMAKE_CURRENT_BINARY_DIR}/${platform}/${prop_file_v120_xp}" DESTINATION tools/msbuild/${platform}) 48 … "${CMAKE_CURRENT_BINARY_DIR}/${platform}/${prop_file_v140}" DESTINATION tools/msbuild/${platform}) 49 …{CMAKE_CURRENT_BINARY_DIR}/${platform}/${prop_file_v140_xp}" DESTINATION tools/msbuild/${platform}) 51 …install(FILES "Microsoft.Cpp.Win32.LLVM-vs2010.targets" DESTINATION "tools/msbuild/${platform}" RE… 52 …install(FILES "Microsoft.Cpp.Win32.LLVM-vs2012.targets" DESTINATION "tools/msbuild/${platform}" RE… 53 …install(FILES "Microsoft.Cpp.Win32.LLVM-vs2012_xp.targets" DESTINATION "tools/msbuild/${platform}"… [all …]
|
D | install.bat | 16 REM Search for the MSBuild toolsets directory. 18 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\Platforms\%PLATFORM%\PlatformToolsets" 20 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\Platforms\%PLATFORM%\PlatformToolsets" 24 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V110\Platforms\%PLATFORM%\PlatformToolsets" 26 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V110\Platforms\%PLATFORM%\PlatformToolsets" 30 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\%PLATFORM%\PlatformToolsets" 32 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\%PLATFORM%\PlatformToolsets" 36 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V140\Platforms\%PLATFORM%\PlatformToolsets" 38 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V140\Platforms\%PLATFORM%\PlatformToolsets" 47 echo Failed to find MSBuild toolsets directory.
|
D | uninstall.bat | 15 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\Platforms\%PLATFORM%\PlatformToolsets" 19 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\Platforms\%PLATFORM%\PlatformToolsets" 24 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V110\Platforms\%PLATFORM%\PlatformToolsets" 31 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V110\Platforms\%PLATFORM%\PlatformToolsets" 39 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\%PLATFORM%\PlatformToolsets" 46 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\%PLATFORM%\PlatformToolsets" 54 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V140\Platforms\%PLATFORM%\PlatformToolsets" 61 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V140\Platforms\%PLATFORM%\PlatformToolsets"
|
/external/flatbuffers/android/jni/ |
D | msbuild.py | 16 """Simple script that locates the newest MSBuild in one of several locations. 18 This script will find the highest version number of MSBuild and run it, 19 passing its arguments through to MSBuild. 33 SEARCH_FOLDERS = [ PROGRAM_FILES + "\\MSBuild\\*\\Bin\\MSBuild.exe", 34 PROGRAM_FILES_X86 + "\\MSBuild\\*\\Bin\\MSBuild.exe", 35 SYSTEMROOT + "\\Microsoft.NET\Framework\\*\\MSBuild.exe" ] 70 print "Unable to find MSBuild.\n"
|
/external/python/cpython3/Tools/msi/ |
D | uploadrelease.bat | 58 call "%PCBUILD%find_msbuild.bat" %MSBUILD% 59 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2) 62 %MSBUILD% /v:m /nologo uploadrelease.proj /t:Upload /p:Platform=x86 64 %MSBUILD% /v:m /nologo uploadrelease.proj /t:Upload /p:Platform=x64 /p:IncludeDoc=false 68 %MSBUILD% /v:m /nologo uploadrelease.proj /t:Purge 76 %MSBUILD% /v:m /nologo uploadrelease.proj /t:ShowHashes /p:Platform=x86 78 %MSBUILD% /v:m /nologo uploadrelease.proj /t:ShowHashes /p:Platform=x64 /p:IncludeDoc=false 85 %MSBUILD% /v:m /nologo uploadrelease.proj /t:Test /p:Platform=%1 88 %MSBUILD% /v:m /nologo uploadrelease.proj /t:Purge 90 %MSBUILD% /v:m /nologo uploadrelease.proj /t:Test /p:Platform=%1
|
D | build.bat | 26 call "%PCBUILD%find_msbuild.bat" %MSBUILD% 27 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2) 48 %MSBUILD% "%D%launcher\launcher.wixproj" /p:Platform=x86 62 %MSBUILD% %BUILD_CMD% 66 %MSBUILD% /p:Platform=x64 %BUILD_CMD%
|
D | buildrelease.bat | 75 call "%PCBUILD%find_msbuild.bat" %MSBUILD% 76 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2) 171 %MSBUILD% "%D%launcher\launcher.wixproj" /p:Platform=x86 %CERTOPTS% /p:ReleaseUri=%RELEASE_URI% 174 %MSBUILD% "%D%launcher\launcher.wixproj" /p:Platform=x86 %CERTOPTS% /p:ReleaseUri=%RELEASE_URI% 180 %MSBUILD% "%D%bundle\releaselocal.wixproj" /t:Rebuild %BUILDOPTS% %CERTOPTS% /p:RebuildAll=true 182 %MSBUILD% "%D%bundle\releaseweb.wixproj" /t:Rebuild %BUILDOPTS% %CERTOPTS% /p:RebuildAll=false 187 %MSBUILD% "%D%make_zip.proj" /t:Build %BUILDOPTS% %CERTOPTS% /p:OutputPath="%BUILD%en-us" 192 …%MSBUILD% "%D%..\nuget\make_pkg.proj" /t:Build /p:Configuration=Release /p:Platform=%1 /p:OutputPa…
|
/external/python/cpython3/PC/bdist_wininst/ |
D | build.bat | 10 call "%PCBUILD%find_msbuild.bat" %MSBUILD% 11 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2) 13 %MSBUILD% "%D%bdist_wininst.vcxproj" "/p:SolutionDir=%PCBUILD%\" /p:Configuration=Release /p:Platfo… 19 %MSBUILD% "%D%bdist_wininst.vcxproj" "/p:SolutionDir=%PCBUILD%\" /p:Configuration=Release /p:Platfo…
|
/external/flatbuffers/ |
D | appveyor.yml | 49 …:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets" de… 50 …:\Program Files (x86)\MSBuild\15.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets" de… 51 …:\Program Files (x86)\MSBuild\16.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets" de… 113 …- "msbuild.exe /property:Configuration=Release;OutputPath=tempcs /verbosity:minimal FlatBuffers.Te… 116 …- "msbuild.exe /property:Configuration=Release;UnsafeByteBuffer=true;OutputPath=tempcsUnsafe /verb…
|
/external/python/cpython3/.azure-pipelines/windows-release/ |
D | msi-steps.yml | 70 echo ##vso[task.setvariable variable=MSBUILD]%MSBUILD% 79 %MSBUILD% Tools\msi\launcher\launcher.wixproj 86 %MSBUILD% Tools\msi\bundle\releaselocal.wixproj /t:Rebuild /p:RebuildAll=true 87 %MSBUILD% Tools\msi\bundle\releaseweb.wixproj /t:Rebuild /p:RebuildAll=false 99 %MSBUILD% Tools\msi\bundle\releaselocal.wixproj /t:Rebuild /p:RebuildAll=true 100 %MSBUILD% Tools\msi\bundle\releaseweb.wixproj /t:Rebuild /p:RebuildAll=false
|
/external/python/cpython3/Tools/nuget/ |
D | build.bat | 29 call "%PCBUILD%find_msbuild.bat" %MSBUILD% 30 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2) 39 …%MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x86 %OUTPUT% %PACKAGES% %PYTHON_… 48 …%MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x64 %OUTPUT% %PACKAGES% %PYTHON_… 57 …%MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=ARM %OUTPUT% %PACKAGES% %PYTHON_…
|
/external/python/cpython3/Tools/msi/launcher/ |
D | launcher.wixproj | 2 …lsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 23 <MSBuild Projects="$(PySourcePath)PCbuild\pylauncher.vcxproj" Properties="Platform=Win32" /> 26 … <MSBuild Projects="$(PySourcePath)PCbuild\pywlauncher.vcxproj" Properties="Platform=Win32" /> 29 <MSBuild Projects="$(PySourcePath)PCbuild\pyshellext.vcxproj" Properties="Platform=Win32" /> 32 <MSBuild Projects="$(PySourcePath)PCbuild\pyshellext.vcxproj" Properties="Platform=x64" />
|
/external/python/cpython2/Tools/nuget/ |
D | build.bat | 24 call "%PCBUILD%find_msbuild.bat" %MSBUILD% 25 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2) 42 %MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x86 %OUTPUT% %PACKAGES% 51 %MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x64 %OUTPUT% %PACKAGES%
|
/external/expat/win32/ |
D | build_expat_iss.bat | 34 REM Read by msbuild! 47 msbuild /m expat.sln || EXIT /b 1 57 msbuild /m expat.sln || EXIT /b 1 67 msbuild /m expat.sln || EXIT /b 1 77 msbuild /m expat.sln || EXIT /b 1
|
/external/zstd/ |
D | appveyor.yml | 111 …msbuild "build\VS2008\zstd.sln" /m /verbosity:minimal /property:PlatformToolset=v90 /t:Clean,Build… 118 …msbuild "build\VS2010\zstd.sln" %ADDITIONALPARAM% /m /verbosity:minimal /property:PlatformToolset=… 121 …msbuild "build\VS2010\zstd.sln" %ADDITIONALPARAM% /m /verbosity:minimal /property:PlatformToolset=… 128 …msbuild "build\VS2010\zstd.sln" /m /verbosity:minimal /property:PlatformToolset=v110 /p:ForceImpor… 131 …msbuild "build\VS2010\zstd.sln" /m /verbosity:minimal /property:PlatformToolset=v110 /t:Clean,Buil… 138 …msbuild "build\VS2010\zstd.sln" /m /verbosity:minimal /property:PlatformToolset=v120 /p:ForceImpor… 141 …msbuild "build\VS2010\zstd.sln" /m /verbosity:minimal /property:PlatformToolset=v120 /t:Clean,Buil… 148 …msbuild "build\VS2010\zstd.sln" /m /verbosity:minimal /property:PlatformToolset=v140 /p:ForceImpor… 151 …msbuild "build\VS2010\zstd.sln" /m /verbosity:minimal /property:PlatformToolset=v140 /t:Clean,Buil… 275 …msbuild "build\VS2010\zstd.sln" /m /verbosity:minimal /property:PlatformToolset=v140 /p:ForceImpor… [all …]
|