Searched refs:run_cmake (Results 1 – 6 of 6) sorted by relevance
/Zephyr-latest/scripts/west_commands/ |
D | export.py | 10 from zcmake import run_cmake 55 lines = run_cmake(['-P', str(path / 'zephyr_export.cmake')],
|
D | build.py | 16 from zcmake import DEFAULT_CMAKE_GENERATOR, run_cmake, run_build, CMakeCache 88 self.run_cmake = False 241 self.run_cmake = True 248 self.run_cmake = True 250 self.run_cmake = True 464 self.run_cmake = True 528 self.run_cmake = True 557 self.run_cmake = True # If they insist, we need to re-run cmake. 589 self.run_cmake = True 607 if not self.run_cmake: [all …]
|
D | zcmake.py | 29 def run_cmake(args, cwd=None, capture_output=False, dry_run=False): function 86 return run_cmake(['--build', build_directory] + extra_args, **kwargs)
|
D | sdk.py | 476 output = zcmake.run_cmake(cmds, capture_output=True)
|
/Zephyr-latest/scripts/tests/twister/ |
D | test_runner.py | 484 result = cmake.run_cmake(args=['arg1', 'arg2'], filter_stages=f_stages) 2211 pb.run_cmake = mock.Mock(return_value=cmake_res_mock) 2225 pb.run_cmake.assert_called_once_with(['dummy'], ['dummy filter'])
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | runner.py | 628 def run_cmake(self, args="", filter_stages=None): member in CMake 1673 return self.run_cmake(args,filter_stages)
|