Skip to content

Commit

Permalink
Add installation instructions for dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
offa committed Oct 13, 2024
1 parent 5cbd1e6 commit 95fafcb
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ Please see [Contributing](CONTRIBUTING.md) for how to contribute to this project
- [**Qt6**](https://www.qt.io/)
- [**libusb-1.0**](http://libusb.info/)

See [Setup](./doc/Setup.md) for installation instructions.


## Building

Expand Down
28 changes: 28 additions & 0 deletions doc/Setup.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Setup

List of packages required to build the software.

For development [*Google Test*](https://github.com/google/googletest) (`gtest`) is needed for testing.

It can be installed via the system package manger, [Conan](https://github.com/conan-io/conan) or build from source.

## Arch Linux

```sh
sudo pacman -S \
cmake \
libusb \
qt6-base
```

## Debian / Ubuntu

```sh
sudo apt-get install \
pkg-config \
qt6-base-dev \
libglx-dev \
libgl1-mesa-dev \
libusb-1.0-0-dev
```

0 comments on commit 95fafcb

Please sign in to comment.