diff options
| -rw-r--r-- | BUILDING.md | 11 | 
1 files changed, 10 insertions, 1 deletions
| diff --git a/BUILDING.md b/BUILDING.md index 95db56a..03a95c6 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -25,17 +25,26 @@ and Managing Qt versions.  ```  [smolbote repo]$ qbs build --build-directory build --file src/smolbote.qbs profile:qt5 release  ``` +Shortened: +``` +[smolbote repo]$ qbs build -d build -f src/smolbote.qbs profile:qt5 release +```  This installs the files to build/release/install-root.  * Test run using the specified Qt profile (optional)  ```  [smolbote repo]$ qbs run --build-directory build --file src/smolbote.qbs --products poi profile:qt5 release  ``` +Shortened: +``` +[smolbote repo]$ qbs run -d build -f src/smolbote.qbs -p poi profile:qt5 release +```  ### Notes  * Windows: MSVC compiler is required because of QtWebEngine dependency  * Windows: Passing the -v or -h parameters creates a dialog box instead of   writing the output to stdout.  This is Qt behaviour. +* grsecurity: You may need to exception qbs.  ## Packaging @@ -74,4 +83,4 @@ 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 +[1]: https://doc.qt.io/qbs/index.html | 
