Update README.md
This commit is contained in:
parent
ba24539309
commit
ab87fea692
1 changed files with 15 additions and 4 deletions
19
README.md
19
README.md
|
@ -1,22 +1,33 @@
|
||||||
# Mod(C++) Fundamentals
|
# Mod(C++) Fundamentals
|
||||||
|
|
||||||
## All Platform:
|
## Install tools
|
||||||
|
### All Platforms:
|
||||||
* Follow the instructions to install VSCode from https://code.visualstudio.com/
|
* Follow the instructions to install VSCode from https://code.visualstudio.com/
|
||||||
|
|
||||||
## Ubuntu 20.04 or newer
|
### Ubuntu 20.04 or newer
|
||||||
* Install the build tools
|
* Install the build tools
|
||||||
```bash
|
```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
|
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:
|
### Windows:
|
||||||
* Follow the instructions to install cmake (3.21) from https://cmake.org/download/
|
* Follow the instructions to install cmake (3.21) from https://cmake.org/download/
|
||||||
* Install Visual Studio https://visualstudio.microsoft.com/
|
* Install Visual Studio https://visualstudio.microsoft.com/
|
||||||
You might have to reboot your computer once that's done.
|
You might have to reboot your computer once that's done.
|
||||||
|
|
||||||
## Mac
|
### Mac
|
||||||
* Install clang by typing `xcode-select --install` in a terminal and following the instructions
|
* Install clang by typing `xcode-select --install` in a terminal and following the instructions
|
||||||
* Install the build tools
|
* Install the build tools
|
||||||
```bash
|
```bash
|
||||||
brew install cmake ninja
|
brew install cmake ninja
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Configure and build project
|
||||||
|
|
||||||
|
### All Platforms:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
git clone https://github.com/mod-cpp/pacman.git
|
||||||
|
cd pacman
|
||||||
|
code .
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue