Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tools/setup/cmake.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,9 @@ def _get_cmake_cache_variables(self):
def _run(self, args, env):
"""Executes cmake with arguments and an environment."""
command = [self._cmake_command] + args + [self.cmake_dir]
if command is None:
print('cmake not found, please install cmake before continuing...')
sys.exit(1)
print(' '.join(command))
check_call(command, cwd=self.build_dir, env=env)

Expand Down