diff options
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) +``` |