summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-01-23 12:13:45 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-01-23 12:13:45 +0800
commit4ba90c6986c5ea05d5f6b19cca46d79471c6bbd8 (patch)
treedc7cd397ac08a2f9ba71b8d529ba7466a37369e4 /README.md
parent79a0fcc1b4f9dd7cc46b8f3ecf7e59e0fa66af97 (diff)
Initial Doxyfile and README
Diffstat (limited to 'README.md')
-rw-r--r--README.md42
1 files changed, 42 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..8e49098
--- /dev/null
+++ b/README.md
@@ -0,0 +1,42 @@
+# Qt Core wrapper for [libicclient](../client)
+
+# Building
+
+## Getting
+
+```sh
+$ git clone git://darapsa.org/qicclient.git
+$ cd qicclient
+```
+
+## Configuring for various target hosts (with optional debugging)
+
+```sh
+$ qmake CONFIG+=debug -spec android-clang qicclient.pro
+```
+
+or
+
+```sh
+$ qmake CONFIG+=debug -spec linux-g++ qicclient.pro
+```
+
+or
+
+```sh
+$ qmake CONFIG+=debug -spec macx-clang qicclient.pro
+```
+
+or
+
+```sh
+$ qmake CONFIG+=debug -spec macx-ios-clang qicclient.pro
+```
+
+or so on.
+
+## Compiling and linking
+
+```sh
+$ make # -jN (with N an integer number of parallel tasks you allow your computer to run for compiling this)
+```