You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
321 B
6 lines
321 B
#!/bin/bash
|
|
wget https://cmake.org/files/v3.12/cmake-3.12.0-rc2-Darwin-x86_64.dmg
|
|
sudo hdiutil attach cmake-3.12.0-rc2-Darwin-x86_64.dmg
|
|
sudo installer -package /Volumes/cmake-3.12.0-rc2-Darwin-x86_64/cmake-3.12.0-rc2-Darwin-x86_64.pkg -target /
|
|
sudo hdiutil detach /Volumes/cmake-3.12.0-rc2-Darwin-x86_64
|
|
cmake --version
|