summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Prabowo Kamal <erik@darapsa.org>2025-12-10 20:50:58 +0800
committerErik Prabowo Kamal <erik@darapsa.org>2025-12-10 21:08:47 +0800
commit4c8686804231636526a5c1ec70209fb26526df09 (patch)
tree99931296b93dc86262cad8dbc0381e2920d71601
parent54357cfb6648b6d129d75d0a77f135028c7160fe (diff)
Initial build instructionsHEADmaster
-rw-r--r--README.md41
1 files changed, 41 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..2473330
--- /dev/null
+++ b/README.md
@@ -0,0 +1,41 @@
+# C++ Plugin for making QML module presentations easy to customise the way a [Bootstrap](https://getbootstrap.com) app can be.
+
+# Building
+
+## Getting
+
+```sh
+$ git clone git://darapsa.org/qootstrap.git
+$ cd qootstrap
+$ git submodule init
+$ git submodule update
+$ mkdir build
+$ cd build
+```
+
+## Configuring, compiling, linking and installing for various target hosts
+
+```sh
+$ /Applications/Qt/6.10.1/android_arm64_v8a/bin/qmake ../qootstrap.pro CONFIG+=release ANDROID_ABIS=arm64-v8a ANDROID_API_VERSION=21
+$ make
+$ sed -i '' -e 's/libs\/arm64-v8a/Applications\/Qt\/6.10.1\/android_arm64_v8a\/qml\/Bootstrap/g'
+$ make install
+```
+
+or
+
+```sh
+$ /Applications/Qt/6.10.1/wasm_multithread/bin/qmake ../qootstrap.pro CONFIG+=release
+$ emmake make
+$ emmake make install
+```
+
+or
+
+```sh
+$ /Applications/Qt/QtDesignStudio/qt6_design_studio_reduced_version/bin/qmake ../qootstrap.pro CONFIG+=release
+$ make
+$ make install
+```
+
+or so on.