We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 010b089 commit f750332Copy full SHA for f750332
1 file changed
readme.md
@@ -13,10 +13,21 @@ Bound Book Format (.bbf) is a high-performance binary container designed specifi
13
## Getting Started
14
15
### Prerequisites
16
-- C++17 compliant compiler (GCC/Clang/MSVC)
+- C++17 compliant compiler (GCC/Clang/MSVC), and optionally CMake
17
- [xxHash](https://github.com/Cyan4973/xxHash) library
18
19
### Compilation
20
+
21
+#### CMake
22
23
+```bash
24
+cmake -B build
25
+cmake --build build
26
+sudo cmake --install build
27
+```
28
29
+#### Manual
30
31
Linux
32
```bash
33
g++ -std=c++17 bbfenc.cpp libbbf.cpp xxhash.c -o bbfmux -pthread
0 commit comments