We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ccmake
1 parent 40acf75 commit e280a1fCopy full SHA for e280a1f
src/cmake/__init__.py
@@ -50,6 +50,11 @@ 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(
55
+ f"'ccmake' is not available in cmake installation at '{CMAKE_BIN_DIR}'. "
56
+ "Perhaps 'ccmake' is not yet inclucded to the package for this platform."
57
+ )
58
_program_exit('ccmake', *sys.argv[1:])
59
60
0 commit comments