summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-03-28 15:19:02 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-03-28 15:19:02 +0800
commit4681103c794fef10a0448d4378ca68ac77b6ee29 (patch)
treea7b411f744e730ded6877ec1b275a75f017b14e5 /README.md
parenta68fc492cf86a14cf9cf95d9f9a764cdf5b01007 (diff)
parent0728570b5a424abaad7fe49f63caa1977e016782 (diff)
Merge branch 'master' into cmake
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..71ee8f6
--- /dev/null
+++ b/README.md
@@ -0,0 +1,42 @@
+# Qt Core wrapper for [libicclient](http://darapsa.org/libicclient)
+
+# 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)
+```