-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathINSTALL
53 lines (41 loc) · 1.23 KB
/
INSTALL
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
43
44
45
46
47
48
49
50
51
52
-------------------------------------------------------------------------------
INSTALL
-------------------------------------------------------------------------------
Requirements
------------
- git (only needed when building from git)
- A C++ compiler with C++11 support (-std=c++11 option), e.g.
- g++ (>= 4.8.1)
- clang++ (>= 3.3)
- make
- libtool (only needed when building from git)
- pkg-config (>= 0.22)
- cmake (>= 2.8.12)
- libglib (>= 2.28.0)
- glibmm-2.4 (>= 2.28.0)
- Qt5 >= 5.7 (including the following components):
- Qt5Core, Qt5Gui, Qt5Widgets, Qt5Svg
- Boost (>= 1.55)
- Qwt (>= 6.1.2)
- Python (>= 3)
- libsigrokcxx (>= 0.5.2) (libsigrok C++ bindings)
- Asciidoctor (optional, only needed to build the manual)
Building and installing
-----------------------
In order to get the SmuView source code and build it, run:
$ git clone https://github.com/knarfS/smuview.git
$ cd smuview
$ mkdir build
$ cd build
$ cmake ../
$ make
For installing SmuView:
$ sudo make install
Creating a source distribution package
--------------------------------------
In order to build a source package begin with an unconfigured source tree.
$ cd smuview
$ mkdir dist
$ cd dist
$ cmake ../
$ make package_source