blob: 8253479bd7075a4dcf34c1a0029b116cb283f125 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
mkdir build
cd build
cmake ..
make
Test by running:
bin/tng_testing
No system wide installations are made yet (no 'make install'), which means that
programs using the library must specify explicitly where to look for it.
(currently 'bin/tng_testing' requires a tng_example.tng in the directory
the command is invoked. This will be fixed soon:
cp ../example_files/tng_example.tng .
)
Useful cmake flags:
-DBUILD_DOCUMENTATION=ON to build the API documentation (requires doxygen)
-DCMAKE_BUILD_TYPE=Debug to compile with debug flags (recommended for
feedback during development)
|