Print cmake dir when running python -m netgen.cmake

This commit is contained in:
Matthias Hochsteger 2024-03-19 18:52:31 +01:00
parent 11e8914dd8
commit 9cd533fbac

View File

@ -66,3 +66,6 @@ def get_cmake_dir():
NG_INSTALL_DIR_PYTHON NG_INSTALL_DIR_PYTHON
) )
return p.normpath(p.join(d_python,py_to_cmake)) return p.normpath(p.join(d_python,py_to_cmake))
if __name__ == '__main__':
print(get_cmake_dir(), end='')