Skip to content

Latest commit

 

History

History
61 lines (38 loc) · 832 Bytes

setup-mac.md

File metadata and controls

61 lines (38 loc) · 832 Bytes

Setup for macOS

Scripts are bash

Xcode

Install Command Line Tools (CLT) for Xcode:

xcode-select --install

Homebrew

Install Homebrew:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Development Tools

vcpkg

git clone https://github.com/microsoft/vcpkg "$HOME/vcpkg"
cd $HOME/vcpkg && ./bootstrap-vcpkg.sh

cmake

Install via Homebrew:

brew install cmake 

Verify:

cmake --version

ninja

brew install ninja

Verify:

ninja --version

Visual Studio Code

Download and install from Visual Studio Code site.

Open Visual Studio Code and press Cmd + Shift + p. Select Shell Command: Install 'code' command in PATH.