blob: e00530a116a78a0a8bcb8af7979d30ce3068b772 (
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
27
|
# stdplus
stdplus is a c++ project containing commonly used classes and functions
for the Linux platform.
## Dependencies
Test cases require google{test,mock}, valgrind, and lcov.
## Building
For a standard release build, you want something like:
```
./bootstrap.sh
./configure --disable-examples --disable-tests
make
make install
```
For a test / debug build, a typical configuration is
```
./bootstrap.sh
./configure --enable-tests --enable-coverage --enable-valgrind
make
make check
make check-valgrind
make check-code-coverage
```
|