2021-10-04 12:47:14 +00:00
|
|
|
# Mod(C++) Fundamentals
|
|
|
|
|
|
|
|
## All Platform:
|
|
|
|
* Follow the instructions to install VSCode from https://code.visualstudio.com/
|
|
|
|
|
|
|
|
## Ubuntu 20.04 or newer
|
|
|
|
* Install the build tools
|
|
|
|
```bash
|
|
|
|
sudo apt-get install ninja-build pkg-config curl zip unzip tar cmake build-essential libx11-dev libxrandr-dev libxi-dev libudev-dev libgl1-mesa-dev
|
|
|
|
```
|
|
|
|
|
|
|
|
## Windows:
|
|
|
|
* Follow the instructions to install cmake (3.21) from https://cmake.org/download/
|
|
|
|
* Install Visual Studio https://visualstudio.microsoft.com/
|
|
|
|
You might have to reboot your computer once that's done.
|
|
|
|
|
|
|
|
## Mac
|
|
|
|
Install clang by typing `xcode-select --install` in a terminal and following the instructions
|
2021-10-04 12:49:20 +00:00
|
|
|
* Install the build tools
|
2021-10-04 12:47:14 +00:00
|
|
|
```bash
|
|
|
|
brew install cmake ninja
|
2021-10-04 12:49:20 +00:00
|
|
|
```
|