1
0
mirror of synced 2025-02-08 22:59:41 +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 # Compiling jujube
jujube uses the meson build system. 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 ## Linux
@ -14,11 +14,13 @@ jujube needs a *very* up to date C++ compiler for I'm using stuff like `std::fil
### Building ### 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 ```bash
$ cd jujube $ cd jujube
$ CXX=gcc-9 meson build $ CXX=gcc-9 meson build
$ cd build $ cd build
$ ninja $ ninja
``` ```
And that's it !