diff options
Diffstat (limited to 'BUILDING.md')
-rw-r--r-- | BUILDING.md | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/BUILDING.md b/BUILDING.md index bc02867..aa693dd 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -1,18 +1,29 @@ -### How to build +## Building +* (Recommended) Create a build folder and change into it ``` mkdir build && cd build -qmake-qt5 ../src/qt-simplebrowser.pro +``` + +* Generate the Makefile +``` +qmake-qt5 ../src/smolbote.pro + +* [TODO] Prepare translations + +* Run make +``` make ``` -## Notes +### Notes +* Don't do any steps marked [TODO] * 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. -### Deploying +## Deploying -## Tarball +### Tarball Creating a tarball: ``` @@ -39,7 +50,7 @@ Verifying checksum: sha512sum --check checksum.sha512 ``` -## Windows +### Windows ``` QT_DIR\QT_VERSION\msvc2015_64\windeployqt.exe build-PROFILE\release\qtbrowser.exe |