We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ccmake
1 parent 40acf75 commit ecad199Copy full SHA for ecad199
1 file changed
src/cmake/__init__.py
@@ -50,6 +50,8 @@ def _program_exit(name: str, *args: str) -> NoReturn:
50
51
52
def ccmake() -> NoReturn:
53
+ if not (Path(CMAKE_BIN_DIR) / "ccmake").exists():
54
+ raise FileNotFoundError(f"'ccmake' is not available in cmake installation at {CMAKE_BIN_DIR}.")
55
_program_exit('ccmake', *sys.argv[1:])
56
57
0 commit comments