-
Notifications
You must be signed in to change notification settings - Fork 5
/
README
36 lines (25 loc) · 959 Bytes
/
README
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
MCPANEL
Presentation
============
This package provides a library written in C implementing a set of widgets
designed to view in realtime multichannels signals. Despite it has been
initially design to view signals coming from a BIOSEMI Activetwo system, it
is totally system agnostic and any user of other system might find it
useful.
Supported platforms
===================
The widgets are based on GTK+ framework, so any platform supported by GTK+
is able to compile and run the library (this is the case of GNU/Linux,
Mac OS X and Windows). GTK+ 2.12 libraries or later must be installed before
compiling the package.
Compilation
===========
This library can be compiled either using meson or the autotools toolchain.
Using meson:
meson <builddir> [--prefix=<installdir>]
ninja -C <builddir> install
Using autotools:
mkdir build && cd build
../autogen.sh
../configure [--prefix=<installdir>]
make install