summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-01-23 12:35:13 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-01-23 12:35:13 +0800
commit0b0941808c32304dc7a5b9b8affb56bc3943949c (patch)
treee0539599332024dccfefa56d5f7913f03c9426a1 /README.md
parenta4781228c42cd4668c432d6be3c195ce7b2fdf3c (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..1f2fe1d
--- /dev/null
+++ b/README.md
@@ -0,0 +1,42 @@
+# Qt Core wrapper for [librtclient](http://darapsa.org/librtclient)
+
+# Building
+
+## Getting
+
+```sh
+$ git clone git://darapsa.org/qrtclient.git
+$ cd qrtclient
+```
+
+## Configuring for various target hosts (with optional debugging)
+
+```sh
+$ qmake CONFIG+=debug -spec android-clang qrtclient.pro
+```
+
+or
+
+```sh
+$ qmake CONFIG+=debug -spec linux-g++ qrtclient.pro
+```
+
+or
+
+```sh
+$ qmake CONFIG+=debug -spec macx-clang qrtclient.pro
+```
+
+or
+
+```sh
+$ qmake CONFIG+=debug -spec macx-ios-clang qrtclient.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)
+```