summaryrefslogtreecommitdiff
path: root/README.md
blob: 8e490986fd35bcca1edf39239a1c11c9edf6db40 (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  [libicclient](../client)

# 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)
```