Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

audio-engineer/aau-p1-software

Repository files navigation

AAU P1 Software

Setup

Prerequisites

You need to have the following software installed on your development system:

If you are on Windows and use Windows Subsystem for Linux, consider running the wsl-setup script to install all necessary and some additional software.

Editors/IDEs

Visual Studio Code

Create a .vscode/cmake-kits.json file and replace the values for name, C and CXX with a name for the configuration and the paths to the Clang binaries on your system respectively.

[
  {
    "name": "Some Clang Configuration",
    "compilers": {
      "C": "/some/path/to/clang",
      "CXX": "/some/path/to/clang++"
    },
    "preferredGenerator": {
      "name": "Ninja"
    }
  }
]