]> sigrok.org Git - pulseview.git/blob - INSTALL
When no range is specified, Int property spinbox should have a range set between...
[pulseview.git] / INSTALL
1 -------------------------------------------------------------------------------
2 INSTALL
3 -------------------------------------------------------------------------------
4
5 Requirements
6 ------------
7
8  - git
9  - g++
10  - make
11  - libtool
12  - pkg-config >= 0.22
13  - cmake >= 2.8.6
14  - libglib >= 2.28.0
15  - Qt >= 4.5
16  - libboost >= 1.42 (including the following libs):
17     - libboost-system
18     - libboost-thread
19  - libsigrok >= 0.2.0
20  - libsigrokdecode >= 0.2.0 (optional, support disabled by default for now)
21
22
23 Building and installing
24 -----------------------
25
26 In order to get the PulseView source code and build it, run:
27
28  $ git clone git://sigrok.org/pulseview
29  $ cd pulseview
30  $ cmake .
31  $ make
32
33 For installing PulseView:
34
35  $ make install
36
37 See the following wiki page for more (OS-specific) instructions:
38
39  http://sigrok.org/wiki/Building
40
41
42 Creating a source distribution package
43 --------------------------------------
44
45 In order to build a source package begin with an unconfigured source tree.
46
47  $ mkdir dist
48  $ cd dist
49  $ cmake ..
50  $ make package_source
51