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: 820263507fe73e6a1d0f33565516610e0417001f (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_maintenance\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