aboutsummaryrefslogtreecommitdiff
path: root/docs/manual/Building.Compiling.md
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-12-21 17:52:56 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2017-12-21 17:52:56 +0100
commitcf06dcb0650f603ae3d634634d81f9ec78d21937 (patch)
tree07b6aff6426ba091cd5b1a90832527d651101ac6 /docs/manual/Building.Compiling.md
parentAdded Search Box (diff)
downloadsmolbote-cf06dcb0650f603ae3d634634d81f9ec78d21937.tar.xz
Edited documentation
- Search highlighting is removed when you close the search box - Fixed PKGBUILD not working - PKGBUILD can now pick compiler and optimization
Diffstat (limited to 'docs/manual/Building.Compiling.md')
-rw-r--r--docs/manual/Building.Compiling.md28
1 files changed, 0 insertions, 28 deletions
diff --git a/docs/manual/Building.Compiling.md b/docs/manual/Building.Compiling.md
deleted file mode 100644
index 7505755..0000000
--- a/docs/manual/Building.Compiling.md
+++ /dev/null
@@ -1,28 +0,0 @@
-# Compiling
-
-## Create qbs configuration
-Before you can build anything with qbs, you need to set up the compiler
-toolchain as well as Qt.
-
-```
-qbs setup-toolchains --detect
-qbs setup-qt /usr/bin/qmake-qt5 qt5
-```
-
-## Compile
-
-1. Create a build folder
-```
-[smolbote repo]$ mkdir ../build
-```
-
-2. Build
-```
-[smolbote repo]$ qbs build -d ../build profile:qt5 release
-```
-This installs the files to ../build/release/install-root.
-
-3. Install
-```
-[smolbote repo]$ qbs install -d ../build -p poi --install-root "/install/root" profile:qt5 release
-```