Welcome to mirror list, hosted at ThFree Co, Russian Federation.

format.cmd « windows « build_files - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b33ebdcbe5d19a044652de3fe9ddb4e1845b7b7b (plain)
1
2
3
4
5
6
7
8
9
10
REM TODO(sergey): Switch to Python from libraries when available.
set PYTHON="python.exe"
set FORMAT_PATHS=%BLENDER_DIR%\source\tools\utils\clang_format_paths.py

REM The formatting script expects clang-format to be in the current PATH.
set PATH=%BUILD_VS_LIBDIR%\llvm\bin;%PATH%

%PYTHON% %FORMAT_PATHS% --expand-tabs

:EOF