This commit is contained in:
Cœur 2024-05-06 21:52:13 +01:00 committed by GitHub
commit a9dbbb53b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 0 deletions

View File

@ -36,6 +36,16 @@ cmake --build build -t transmission-gtk
./build/gtk/transmission-gtk
```
### Building the QT app with CMake ###
Install QT and build the app:
```bash
brew install qt
brew services start dbus
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_QT=ON -DENABLE_MAC=OFF
cmake --build build -t transmission-qt
./build/qt/transmission-qt
```
## On Unix ##
### Prerequisites ###