1
0
mirror of synced 2024-11-12 01:40:47 +01:00

Update docs

This commit is contained in:
Stepland 2020-02-09 14:07:54 +01:00
parent 9a6d3430d2
commit f123769603

View File

@ -1,9 +1,9 @@
# Compiling jujube
jujube uses the meson build system.
Only time will tell if this turned out to be a wise choice, I just can't stand CMake.
Only time will tell if this turned out to be a wise choice, I wanted to try something other than CMake.
jujube needs a *very* up to date C++ compiler for I'm using stuff like `std::filesystem` which is, at the time of writing, easily availble only on the very last version of your favorite compiler
jujube needs a *very* up to date C++ compiler for I'm using stuff like `std::filesystem` which is, at the time of writing, *easily* availble only on the last few versions of your favorite compiler
## Linux
@ -14,11 +14,13 @@ jujube needs a *very* up to date C++ compiler for I'm using stuff like `std::fil
### Building
let's say you downloaded the source code in `jujube` and you decided to compile with `gcc-9`
let's say you downloaded the source code in a folder called `jujube` and you decided to compile with `gcc-9`
```bash
$ cd jujube
$ CXX=gcc-9 meson build
$ cd build
$ ninja
```
```
And that's it !