diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-03-12 18:27:24 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-03-12 18:27:24 +0800 |
commit | 7f0fbc63243884f5a3301f3c1af47ee4e38f5ed0 (patch) | |
tree | ea5646f1ed727ab4a866def262054bdd905c64ee /README.md | |
parent | 93d62098aef7f4e1c80fd9edaf7730591e102cbd (diff) | |
parent | 9e0471185c01049e4e050458572fd2db51d05fda (diff) |
Merge branch 'master' into cmake
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 42 |
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) +``` |