1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
|
# Building
## On Windows
For Qt5 select this:

Or for Qt6 select these:

Then open CMakeLists.txt in Qt Creator and press Ctrl+R to build and run.
## On Linux & macOS
### Dependencies
Qt 5.15.0+ or 6.2.0+ and the QtMultimedia module is needed for building.
On distros such as Arch Linux, Gentoo, Manjaro, Debian, etc., Qt 5.15+ can be installed from the standard repos.
* Debian/Ubuntu
```bash
sudo apt install build-essential qtbase5-dev qtmultimedia5-dev libqt5svg5-dev
```
* Arch Linux-based
```bash
sudo pacman -S base-devel qt5-base qt5-multimedia qt5-svg
```
* macOS
```bash
brew install qt5
```
* Others
Qt5 may be installed directly from the [Qt website](https://www.qt.io/download),
from unofficial installers such as [aqtinstall](https://github.com/miurahr/aqtinstall),
from community-maintained repositories or
[built from source](https://wiki.qt.io/Building_Qt_5_from_Git).
Here's how one could use aqtinstall to install Qt 5.15.2 on a Debian-based distro.
```bash
sudo apt-get update
sudo apt-get install libgl1-mesa-dev libxcb-xinerama0 libpulse-dev git python3 python3-pip python3-venv -y
python3 -m venv ~/venv
~/venv/bin/pip install aqtinstall==3.2.*
~/venv/bin/aqt install-qt linux desktop 5.15.2 --outputdir ~/Qt
PATH=~/Qt/5.15.2/gcc_64/bin:$PATH
export PATH
```
### Build process
```bash
git clone https://github.com/GIBIS-UNIFESP/wiredpanda
cd wiredpanda
cmake -B build
cmake --build build --config Release
```
This process could take a while. Once concluded, the binary will be located at `wiredpanda/build/wiredpanda`, on Linux, and at `wiredpanda/build/wiredpanda.app/Contents/MacOS/wiredpanda` on macOS.
## Licensing
wiRedPanda is licensed under the [GNU General Public License, Version 3.0](http://www.gnu.org/licenses/).
See [`LICENSE`](LICENSE) for the full license text.
```text
Copyright (C) 2025 - Davi Morales, Fábio Cappabianco, Lucas Lellis, Rodrigo Torres and Vinícius Miguel.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/.
```
|