14 lines
285 B
Markdown
14 lines
285 B
Markdown
# masters-thesis
|
|
|
|
## Building
|
|
|
|
Conan is recommended. Otherwise you have to provide `Catch2_ROOT`
|
|
and `nlohmann_json_ROOT` yourself.
|
|
|
|
```shell
|
|
> mkdir build
|
|
> cd build
|
|
> conan install .. --build=missing
|
|
> cmake .. -DWITH_TESTS=ON -DClang_ROOT=${CLANG_ROOT} -DLLVM_ROOT=${LLVM_ROOT}
|
|
```
|