blob: cb52543b90c92c116e5eeee4cddb899d18896cdb (
plain)
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
|
# Build and installation instructions
## Compile-time build dependencies
- cmake (>= 3.13)
- cmake-extras
- glib-2.0 (>= 2.36)
- intltool
- systemd
- vala (>= 0.20)
- gcovr (>= 2.4)
- lcov (>= 1.9)
- gtest (>= 1.6.0)
## For end-users and packagers
```
cd ayatana-indicator-bluetooth-X.Y.Z
mkdir build
cd build
cmake ..
make
sudo make install
```
**The install prefix defaults to `/usr`, change it with `-DCMAKE_INSTALL_PREFIX=/some/path`**
|