blob: 8de73c8642d4f6e4ad08576026eb29975a6feeaa (
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
|
Prerequisites
------------
- GCC
- Python
- OpenSSL
- Qt Open Source Edition (optional; not needed for Swiften)
Building
--------
- Create a file 'config.py' with the following contents, reflecting your local
setup:
qt = "path/to/qt"
(e.g. qt = "/usr/share/qt4")
- Run
./scons
- To build only a subdir, add the path as a target to scons. E.g., for Swift:
./scons Swift
Running tests
-------------
- Run
./scons test=unit
for running the unit tests, or
./scons test=all
for running all tests.
|