diff options
-rw-r--r-- | BUILDING.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/BUILDING.md b/BUILDING.md index 6afad9f..95db56a 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -5,6 +5,15 @@ * gcc on linux, msvc on windows * qbs +### Configuration +* Set up Qbs +``` +qbs setup-toolchains --detect +qbs setup-qt /usr/bin/qmake-qt5 qt5 +``` +For more information on qbs, refer to the [Qbs manual][1], sections Configuring +and Managing Qt versions. + ### Steps * Create a build folder @@ -64,3 +73,5 @@ Collect the required libraries using ``` QT_DIR\QT_VER\msvc2015_64\windeployqt.exe build-PROFILE\release\qtbrowser.exe ``` + +[1]: https://doc.qt.io/qbs/configuring.html |