2020-06-27 11:28:11 +02:00
|
|
|
# FreeBSD
|
|
|
|
|
2024-06-23 14:26:59 +02:00
|
|
|
For all dependencies below we use Qt 6. Our minimum supported version is Qt 5.15.2, but you are on your own.
|
2020-06-27 11:28:11 +02:00
|
|
|
|
2024-06-23 14:26:59 +02:00
|
|
|
## FreeBSD 14.0-RELEASE
|
2020-06-27 11:28:11 +02:00
|
|
|
|
2024-06-23 14:26:59 +02:00
|
|
|
Note: This is known to work on FreeBSD 14.0-RELEASE amd64. Chances are
|
2020-06-27 11:28:11 +02:00
|
|
|
high that this also works on older FreeBSD releases, architectures and
|
2024-06-23 14:26:59 +02:00
|
|
|
FreeBSD 15.0-SNAP.
|
2020-06-27 11:28:11 +02:00
|
|
|
|
|
|
|
1. Install build dependencies from package sources (or build from the
|
2024-06-23 14:26:59 +02:00
|
|
|
ports tree): `# pkg install boost-libs git qt6-base qt6-svg qt6-5compat qt6-imageformats qtkeychain-qt6 cmake`
|
2022-07-23 14:04:29 +02:00
|
|
|
1. In the project directory, create a build directory and enter it
|
|
|
|
```sh
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
```
|
2024-05-06 17:03:17 +02:00
|
|
|
1. Generate build files. To enable Lua plugins in your build add `-DCHATTERINO_PLUGINS=ON` to this command.
|
2022-07-23 14:04:29 +02:00
|
|
|
```sh
|
2024-06-23 14:26:59 +02:00
|
|
|
cmake -DBUILD_WITH_QT6=ON ..
|
2022-07-23 14:04:29 +02:00
|
|
|
```
|
|
|
|
1. Build the project
|
|
|
|
```sh
|
|
|
|
make
|
|
|
|
```
|