pacman/README.md

35 lines
1018 B
Markdown
Raw Normal View History

# Mod(C++) Fundamentals
2021-10-04 13:12:22 +00:00
## Install tools
### All Platforms:
* Follow the instructions to install VSCode from https://code.visualstudio.com/
2021-10-04 13:12:22 +00:00
### 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
```
2021-10-04 13:12:22 +00:00
### 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.
2021-10-04 13:12:22 +00:00
### Mac
2021-10-04 12:49:39 +00:00
* 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
```bash
brew install cmake ninja
2021-10-04 12:49:20 +00:00
```
2021-10-04 13:46:53 +00:00
* Follow the instructions for [Launching VSCode from the command line](https://code.visualstudio.com/docs/setup/mac#_launching-from-the-command-line)
2021-10-04 13:12:22 +00:00
## Configure and build project
### All Platforms:
```bash
git clone https://github.com/mod-cpp/pacman.git
2021-10-04 13:46:53 +00:00
cd pacman
code .
2021-10-04 13:12:22 +00:00
```