]> sigrok.org Git - pulseview.git/blame - INSTALL
Drop some trailing whitespace.
[pulseview.git] / INSTALL
CommitLineData
a5331e7a
UH
1-------------------------------------------------------------------------------
2INSTALL
3-------------------------------------------------------------------------------
4
dd3b0532
AG
5Requirements
6------------
7
5164bbd9 8 - git (only needed when building from git)
9a5624cf 9 - A C++ compiler with C++11 support (-std=c++11 option), e.g.
93cc1067
UH
10 - g++ (>= 4.8.1)
11 - clang++ (>= 3.3)
dd3b0532 12 - make
5164bbd9 13 - libtool (only needed when building from git)
dd3b0532 14 - pkg-config >= 0.22
e222f01e 15 - cmake >= 2.8.12
dd3b0532 16 - libglib >= 2.28.0
c18d0755 17 - glibmm-2.4 (>= 2.28.0)
e7ab88e3
UH
18 - Qt5 (including the following components):
19 - Qt5Core, Qt5Gui, Qt5Widgets, Qt5Svg
d68d75c2 20 - libboost >= 1.55 (including the following libs):
dd3b0532 21 - libboost-system
7a2305bc 22 - libboost-filesystem
f8cbea47 23 - libboost-serialization
e863bfad 24 - libboost-test (optional, only needed to run the unit tests)
374be3d9
UH
25 - libsigrokcxx >= 0.5.0 (libsigrok C++ bindings)
26 - libsigrokdecode >= 0.5.0
c3904ef7 27 - libsigrokandroidutils >= 0.1.0 (optional, only needed on Android)
dd3b0532
AG
28
29
30Building and installing
31-----------------------
32
33In order to get the PulseView source code and build it, run:
34
35 $ git clone git://sigrok.org/pulseview
36 $ cd pulseview
37 $ cmake .
38 $ make
39
40For installing PulseView:
41
42 $ make install
43
a5331e7a 44See the following wiki page for more (OS-specific) instructions:
dd3b0532 45
a5331e7a 46 http://sigrok.org/wiki/Building
dd3b0532
AG
47
48
49Creating a source distribution package
50--------------------------------------
51
52In order to build a source package begin with an unconfigured source tree.
53
54 $ mkdir dist
55 $ cd dist
56 $ cmake ..
57 $ make package_source
a5331e7a 58