/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 …\Installer\vswhere.exe" -property installationPath -latest') 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 | 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 | 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 79 rem These use the actual property names used by MSBuild. We could just let 107 call "%dir%find_msbuild.bat" %MSBUILD% 108 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2) 127 %MSBUILD% "%dir%\pythoncore.vcxproj" /t:KillPython %verbose%^ 135 rem Call on MSBuild to do the work, echo the command. [all …]
|
D | python.props | 2 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 24 Convincing MSVC/MSBuild to prefer our platform names is too difficult, 74 let the MSBuild targets determine which one it wants to use (typically the earliest 156 <PythonVersionHex>$([msbuild]::BitwiseOr( 157 $([msbuild]::Multiply($(MajorVersionNumber), 16777216)), 158 $([msbuild]::BitwiseOr( 159 $([msbuild]::Multiply($(MinorVersionNumber), 65536)), 160 $([msbuild]::BitwiseOr( 161 $([msbuild]::Multiply($(MicroVersionNumber), 256)), 162 $([msbuild]::BitwiseOr( [all …]
|
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
|
D | pcbuild.proj | 2 …aultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 82 <MSBuild Projects="@(Projects)" 87 <MSBuild Projects="@(Projects2)" 95 <MSBuild Projects="@(Projects2)" 101 <MSBuild Projects="@(Projects)" 110 <MSBuild Projects="@(Projects2)" 116 <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/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/google-breakpad/src/testing/gtest/codegear/ |
D | gtest.groupproj | 1 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 18 <MSBuild Projects="gtest.cbproj" Targets="" /> 21 <MSBuild Projects="gtest.cbproj" Targets="Clean" /> 24 <MSBuild Projects="gtest.cbproj" Targets="Make" /> 27 <MSBuild Projects="gtest_main.cbproj" Targets="" /> 30 <MSBuild Projects="gtest_main.cbproj" Targets="Clean" /> 33 <MSBuild Projects="gtest_main.cbproj" Targets="Make" /> 36 <MSBuild Projects="gtest_unittest.cbproj" Targets="" /> 39 <MSBuild Projects="gtest_unittest.cbproj" Targets="Clean" /> 42 <MSBuild Projects="gtest_unittest.cbproj" Targets="Make" />
|
/external/googletest/googletest/codegear/ |
D | gtest.groupproj | 1 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 18 <MSBuild Projects="gtest.cbproj" Targets="" /> 21 <MSBuild Projects="gtest.cbproj" Targets="Clean" /> 24 <MSBuild Projects="gtest.cbproj" Targets="Make" /> 27 <MSBuild Projects="gtest_main.cbproj" Targets="" /> 30 <MSBuild Projects="gtest_main.cbproj" Targets="Clean" /> 33 <MSBuild Projects="gtest_main.cbproj" Targets="Make" /> 36 <MSBuild Projects="gtest_unittest.cbproj" Targets="" /> 39 <MSBuild Projects="gtest_unittest.cbproj" Targets="Clean" /> 42 <MSBuild Projects="gtest_unittest.cbproj" Targets="Make" />
|
/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 | 25 call "%PCBUILD%find_msbuild.bat" %MSBUILD% 26 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2) 47 %MSBUILD% "%D%launcher\launcher.wixproj" /p:Platform=x86 61 %MSBUILD% %BUILD_CMD% 65 %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/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/cpython3/Tools/nuget/ |
D | build.bat | 25 call "%PCBUILD%find_msbuild.bat" %MSBUILD% 26 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2) 35 %MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x86 %OUTPUT% %PACKAGES% 44 %MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x64 %OUTPUT% %PACKAGES%
|
/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/libusb/msvc/ |
D | appveyor.bat | 11 msbuild %libusb_2010% /p:Configuration=Debug,Platform=x64 /logger:"C:\Program Files\AppVeyor\BuildA… 17 msbuild %libusb_2010% /p:Configuration=Release,Platform=x64 /logger:"C:\Program Files\AppVeyor\Buil… 22 msbuild %libusb_2010% /p:Configuration=Debug,Platform=Win32 /logger:"C:\Program Files\AppVeyor\Buil… 27 msbuild %libusb_2010% /p:Configuration=Release,Platform=Win32 /logger:"C:\Program Files\AppVeyor\Bu…
|
/external/python/cpython3/Modules/_decimal/tests/ |
D | runall.bat | 15 msbuild /noconsolelogger /target:clean PCbuild\pcbuild.sln /p:Configuration=Release /p:PlatformTarg… 16 msbuild /noconsolelogger /target:clean PCbuild\pcbuild.sln /p:Configuration=Debug /p:PlatformTarget… 17 msbuild /noconsolelogger PCbuild\pcbuild.sln /p:Configuration=Release /p:Platform=x64 18 msbuild /noconsolelogger PCbuild\pcbuild.sln /p:Configuration=Debug /p:Platform=x64 21 msbuild /noconsolelogger PCbuild\pcbuild.sln /p:Configuration=Release /p:Platform=Win32 22 msbuild /noconsolelogger PCbuild\pcbuild.sln /p:Configuration=Debug /p:Platform=Win32
|
/external/libusb/ |
D | appveyor.yml | 31 msbuild %libusb_2015% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" 33 msbuild %libusb_2013% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" 35 msbuild %libusb_2012% /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"
|