Homebrew CMake-GUI install
Homebrew Cask packages GUI (graphical) programs. Many users install only the CMake CLI tools with:
brew install cmakeThis does not install the cmake-gui program.
To install CMake-GUI:
brew install --cask cmakeTo use cmake-gui from terminal, add this to ~/.zprofile:
export PATH=$PATH:/Applications/CMake.app/Contents/binConfirm the /Applications path from the cmake-gui line under Artifacts:
brew info --cask cmakeWhen launching from terminal, specify -S . and -B build to prefill source and build directories:
cmake-gui -S . -B build