tools: remove-build-arm64

This commit is contained in:
Bill Zissimopoulos 2021-12-16 16:06:27 +00:00
parent 3bcb025389
commit b2681ff9c8
No known key found for this signature in database
GPG Key ID: 3D4F95D52C7B3EA3
2 changed files with 7 additions and 2 deletions

View File

@ -47,7 +47,7 @@ build_script:
#- C:\cygwin\setup-x86.exe -qnNd -P cygport
#- C:\cygwin\bin\bash --login -c "make -C '%CD%\opt\cygfuse' dist"
# remove ARM64 project configurations to build in VS2015
- tools\gensrc\remove-all-arm64.bat
- tools\gensrc\remove-build-arm64.bat
# build winfsp
- tools\build.bat %CONFIGURATION%

View File

@ -3,7 +3,12 @@
setlocal
setlocal EnableDelayedExpansion
cd %~dp0..\..
if "%1"=="" (
cd %~dp0..\..
) else (
cd "%1"
)
for /r %%f in (*.vcxproj) do (
echo %%f
powershell -NoProfile -ExecutionPolicy Bypass -Command "& '%~dp0remove-vcxproj-config.ps1' -Path '%%f' -ProjectConfiguration '|ARM64'