1# Build
2
3```sh
4cd tests
5mkdir build_cmake
6cd build_cmake
7cmake -DCMAKE_BUILD_TYPE=Release ..
8cmake --build . --config Release
9```
10
11# Run on macOS/Linux/*BSD/etc:
12
13```
14./mustache
15```
16
17# Run on Windows:
18
19```
20Release\mustache.exe
21```
22