-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
INSTALL
107 lines (88 loc) · 4.95 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
To compile LabPlot from source following packages are required (for Fedora see section below):
* CMake version 3.17.0 or higher
* Qt version 5.12 or higher (including the devel-package, libqt5-devel or similar)
* KDE Frameworks 5.32.0 or higher (including the devel-package)
* Qt Advanced Docking System (QADS) or Qt5::GuiPrivate to build QADS locally
* GSL version 1.15 or higher (including the devel-package, gsl-devel or similar)
optional packages
* LaTeX and Poppler version 0.62 or higher (including the devel-package, libpoppler-qt5-devel or similar) to enable LaTeX typesetting in LabPlot
* Required LaTeX packages: 'color', 'preview' and, in case xelatex or lualatex is used, 'xltxtra'.
* On Windows you need a LaTeX installation (like MiKTeX or TeX Live) for LaTeX support.
* On macOS you need a LaTeX installation (like MacTeX) for LaTeX support.
* FFTW version 3.3 or higher (including the devel-package, fftw3-devel or similar)
* HDF5 version 1.8 or higher (including the devel-package, hdf5-devel or similar)
* NetCDF version 3 or higher (including the devel-package, netcdf-devel or similar)
* CFITSIO version 3 or higher to support FITS data format (including the devel-package, cfitsio-devel or similar)
* libcerf version 1.0 or higher to support complex error and related functions (including the devel-package, libcerf-devel or similar)
* Cantor version 24.11.70 or higher (including the devel-package, cantor-devel or similar)
* To use the backends the corresponding application must be installed
* The Python backend needs Python 3.8 installed on Windows
* ZLIB and LZ4 to support ROOT (CERN) TH1 histograms (including the devel-package, zlib-devel and liblz4-devel or similar)
* ReadStat for importing serveral statistical data formats (will be build if not available)
* liborigin version 3 or higher for importing Origin project files (will be build if not available)
* Matio for importing binary MATLAB MAT files (including the devel-package, libmatio-devel or similar)
* QXlsx for importing Excel xlsx files (will be build if not available)
* Orcus for importing ODS (Open Document Spreadsheet) files (including the devel-packages, liborcus-devel and libixion-devel or similar)
* Qt SerialPort to support serial port functionality
* Qt MQTT module (https://github.com/qt/qtmqtt) to support reading and plotting of data from MQTT brokers
* KUserFeedback to support collecting feedback from users
* Discount to support Markdown markup language text
* Eigen3 to support fast baseline removal
* fast_float, dbc_parser_cpp and vector_blf for Vector BLF support (can be fetched from git by setting -DLOCAL_DBC_PARSER=ON and -DLOCAL_VECTOR_BLF=ON)
* MCAP for MCAP file support (Downloading instead of using local copy can be set by using LOCAL_MCAP_DOWNLOAD=ON)
===============================================================================
To build LabPlot execute
# ./compile
Edit the compile script if you want to use options different from default ones.
E.g. specify a custom installation path via
-DCMAKE_INSTALL_PREFIX=/usr/local
or build a debug build via
-DCMAKE_BUILD_TYPE=debug
LabPlot's cmake configuration script searches for the optional packages and uses them if they are found.
To compile LabPlot without optional dependencies even if they are present on the system, use the following parameters (default is "ON"):
-DENABLE_CANTOR=OFF
-DENABLE_FFTW=OFF
-DENABLE_HDF5=OFF
-DENABLE_NETCDF=OFF
-DENABLE_FITS=OFF
-DENABLE_LIBCERF=OFF
-DENABLE_LIBORIGIN=OFF
-DENABLE_ROOT=OFF
-DENABLE_READSTAT=OFF
-DENABLE_MATIO=OFF
-DENABLE_MQTT=OFF
-DENABLE_QTSERIALPORT=OFF
-DENABLE_DISCOUNT=OFF
-DENABLE_XLSX=OFF
-DENABLE_ORCUS=OFF
-DENABLE_VECTOR_BLF=OFF
-DENABLE_EIGEN3=OFF
-DENABLE_MCAP=OFF
-DENABLE_TOUCHBAR=OFF
Note, by switching off these libraries the feature set of LabPlot will be reduced.
To enable reproducable builds, use
-DENABLE_REPRODUCIBLE=ON
To disable building tests, use
-DENABLE_TESTS=OFF
To disable building the SDK, use
-DENABLE_SDK=OFF
================================================================================
To run the tests execute
# cd build
# make test
================================================================================
To install LabPlot execute
# cd build
# make install
================================================================================
To uninstall LabPlot execute
# cd build
# make uninstall
================================================================================
To remove all build files in the base directory execute
# rm -rf build
================================================================================
Fedora dependencies:
sudo dnf install extra-cmake-modules qt6-qtsvg-devel
sudo dnf install kf6-kcoreaddons-devel kf6-kcrash-devel kf6-kdoctools-devel kf6-kiconthemes-devel kf6-ktextwidgets-devel kf6-kwidgetsaddons-devel kf6-kxmlgui-devel kf6-karchive-devel kf6-kcompletion-devel kf6-kio-devel kf6-knewstuff-devel kf6-kuserfeedback-devel qt6-qtbase-private-devel
sudo dnf install bison gsl-devel eigen3-devel