]> sigrok.org Git - pulseview.git/blame - INSTALL
Perform autoranging for analog traces also when new data comes in
[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
UH
9 - A C++ compiler with C++11 support (-std=c++11 option), e.g.
10 - g++ (>= 4.7)
11 - clang++ (>= 3.1)
dd3b0532 12 - make
5164bbd9 13 - libtool (only needed when building from git)
dd3b0532 14 - pkg-config >= 0.22
7ba41e7e 15 - cmake >= 2.8.6
dd3b0532 16 - libglib >= 2.28.0
c18d0755 17 - glibmm-2.4 (>= 2.28.0)
c3904ef7
UH
18 - Qt4 >= 4.5 or Qt5 (including the following components):
19 - Qt4: QtCore, QtGui, QtSvg
20 - Qt5: Qt5Core, Qt5Gui, Qt5Widgets, Qt5Svg
d68d75c2 21 - libboost >= 1.55 (including the following libs):
dd3b0532 22 - libboost-system
7a2305bc 23 - libboost-filesystem
2a21747e 24 - libboost-thread
f8cbea47 25 - libboost-serialization
e863bfad 26 - libboost-test (optional, only needed to run the unit tests)
68ef4b9d
UH
27 - libsigrokcxx >= 0.4.0 (libsigrok C++ bindings)
28 - libsigrokdecode >= 0.4.0
c3904ef7 29 - libsigrokandroidutils >= 0.1.0 (optional, only needed on Android)
dd3b0532
AG
30
31
32Building and installing
33-----------------------
34
35In order to get the PulseView source code and build it, run:
36
37 $ git clone git://sigrok.org/pulseview
38 $ cd pulseview
39 $ cmake .
40 $ make
41
42For installing PulseView:
43
44 $ make install
45
a5331e7a 46See the following wiki page for more (OS-specific) instructions:
dd3b0532 47
a5331e7a 48 http://sigrok.org/wiki/Building
dd3b0532
AG
49
50
51Creating a source distribution package
52--------------------------------------
53
54In order to build a source package begin with an unconfigured source tree.
55
56 $ mkdir dist
57 $ cd dist
58 $ cmake ..
59 $ make package_source
a5331e7a 60