summaryrefslogtreecommitdiff
path: root/build-dir.cmd
diff options
context:
space:
mode:
authorJakobL-MSFT <[email protected]>2023-02-03 14:43:16 -0800
committerGitHub <[email protected]>2023-02-03 14:43:16 -0800
commit08607873c07b796e912560b7fa359b06e1a21404 (patch)
treee02ca7474a93ab367dc6aee544081b6720a08bd1 /build-dir.cmd
parent07779ee84973f2f63a1f2ced6377463b1c01baaf (diff)
Incremental improvements of the sample build system (#849)
Diffstat (limited to 'build-dir.cmd')
-rw-r--r--build-dir.cmd31
1 files changed, 0 insertions, 31 deletions
diff --git a/build-dir.cmd b/build-dir.cmd
deleted file mode 100644
index 56874f1c..00000000
--- a/build-dir.cmd
+++ /dev/null
@@ -1,31 +0,0 @@
-@echo off
-setlocal
-set logfile=%cd%\build-result.log
-del %logfile% 2>nul
-call :check_folder . .
-goto :eof
-
-rem =========================================
-rem check_folder
-rem $1 - sub-folder name
-rem $2 - full path to the sub-folder
-rem
-:check_folder
-set name=%1
-set fullpath=%2
-set name=%name:"=%
-set fullpath=%fullpath:"=%
-pushd "%name%"
-if exist *.sln (
- echo %fullpath%
- echo === %fullpath% >> %logfile%
-
- for /f %%i in ('dir /b *.sln') do (
- msbuild /nologo /v:q /m /t:rebuild %%i >> %logfile%
- )
-) else (
- for /d %%i in (*) do (
- call :check_folder "%%i" "%fullpath%/%%i"
- )
-)
-popd