Go to file
2021-10-05 09:59:28 +02:00
.github/workflows Try to set the build path correctly 2021-09-10 16:53:21 +02:00
.vscode Add another catch2 extension 2021-10-04 15:21:07 +02:00
assets Rename files and remove one 2021-07-05 11:44:37 +02:00
cmake Refactor out the vcpkg cmake code 2021-09-27 16:33:06 +02:00
exercises Split into two exercies 2021-10-05 09:59:28 +02:00
lib Remove unused include 2021-10-05 09:47:55 +02:00
scaling-lib Don't use C-cast 2021-09-10 14:32:46 +02:00
src Put the code in a namespace 2021-07-05 14:10:01 +02:00
test Move Clyde to the solution folder for day 1 ghost exercise 2021-10-05 09:46:29 +02:00
.clang-format Put the code in a namespace 2021-07-05 14:10:01 +02:00
.clang-tidy Disable clang-tidy clechs which create false positive in gtest 2021-09-11 09:42:53 +02:00
.gitignore Add vscode configuration 2021-09-17 15:09:44 +02:00
.gitmodules Don't use submodule anymore we are using FetchContent 2021-09-10 10:59:00 +02:00
CMakeLists.txt Refactor out the vcpkg cmake code 2021-09-27 16:33:06 +02:00
CMakePresets.json Use right test present key 2021-10-04 15:31:14 +02:00
README.md Update README.md 2021-10-04 15:46:53 +02:00
vcpkg.json Replace gtest by catch 2021-09-11 17:10:12 +02:00

Mod(C++) Fundamentals

Install tools

All Platforms:

Ubuntu 20.04 or newer

  • Install the build tools
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:

Mac

  • Install clang by typing xcode-select --install in a terminal and following the instructions
  • Install the build tools
brew install cmake ninja

Configure and build project

All Platforms:

git clone https://github.com/mod-cpp/pacman.git
cd pacman
code .