summaryrefslogtreecommitdiff
path: root/README.md
blob: 1f2fe1d9001bff4d4ba5aea5a435da1a8eb51b5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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)
```