From 801ee4203ff2bfe0c618a0e2d2f16d28ceb3b93e Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 15 Oct 2025 08:14:17 +0000 Subject: [PATCH] Cleanup: remove unused "--cmake-command" & import Ref !138644 --- build_files/utils/make_test.py | 2 -- build_files/windows/test.cmd | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/build_files/utils/make_test.py b/build_files/utils/make_test.py index 47be6be1e90..704bc78e1b1 100755 --- a/build_files/utils/make_test.py +++ b/build_files/utils/make_test.py @@ -23,7 +23,6 @@ from make_utils import call def parse_arguments() -> argparse.Namespace: parser = argparse.ArgumentParser() parser.add_argument("--ctest-command", default="ctest") - parser.add_argument("--cmake-command", default="cmake") parser.add_argument("--git-command", default="git") parser.add_argument("--config", default="") parser.add_argument("build_directory") @@ -34,7 +33,6 @@ def main() -> int: args = parse_arguments() git_command = args.git_command ctest_command = args.ctest_command - cmake_command = args.cmake_command config = args.config build_dir = args.build_directory diff --git a/build_files/windows/test.cmd b/build_files/windows/test.cmd index 04eb350c335..867d3b9e10a 100644 --- a/build_files/windows/test.cmd +++ b/build_files/windows/test.cmd @@ -8,6 +8,6 @@ exit /b 1 :detect_python_done REM Use -B to avoid writing __pycache__ in lib directory and causing update conflicts. -%PYTHON% -B %BLENDER_DIR%\build_files\utils\make_test.py --git-command "%GIT%" --cmake-command="%CMAKE%" --ctest-command="%CTEST%" --config="%BUILD_TYPE%" %BUILD_DIR% +%PYTHON% -B %BLENDER_DIR%\build_files\utils\make_test.py --git-command "%GIT%" --ctest-command="%CTEST%" --config="%BUILD_TYPE%" %BUILD_DIR% :EOF