xref: /libbtbb/README.md (revision e25b118a40ed6b5c2ea76bae29e388cfbc2f6e92)
1libbtbb
2=======
3
4This is the Bluetooth baseband decoding library, forked from the GR-Bluetooth
5project.  It can be used to extract Bluetooth packet and piconet information
6from Ubertooth devices as well as GR-Bluetooth/USRP.
7
8This code is incomplete, it is still under active development.  Patches and
9bug reports should be submitted to the bug tracker on SurceForge:
10http://sourceforge.net/p/libbtbb/tickets/
11
12This software has been developed and tested on Linux, it should work on other
13platforms but this has yet to be tested.
14
15
16Build Instructions
17==================
18
19Libbtbb can be built and installed as follows:
20    $ mkdir build
21    $ cd build
22    $ cmake ..
23    $ make
24    $ make install
25
26This will install the library to /usr/local/lib and the headers to
27/usr/local/include, to install to different locations use:
28    $ cmake -DINSTALL_DIR=/path/to/install -DINCLUDE_DIR=/path/to/include ..
29
30