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