diff options
author | David Strauss <david@davidstrauss.net> | 2017-10-03 17:57:50 -0700 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-10-04 21:52:23 +0300 |
commit | 52a4f198327f2fd246889e662af3ab00388cf66c (patch) | |
tree | 5b8a08627f5881c93599bbbbb61a38d01648e574 /docs/markdown/FAQ.md | |
parent | a0c6d3dbb6219ae16e4191598c36a45970b52592 (diff) | |
download | meson-52a4f198327f2fd246889e662af3ab00388cf66c.zip meson-52a4f198327f2fd246889e662af3ab00388cf66c.tar.gz meson-52a4f198327f2fd246889e662af3ab00388cf66c.tar.bz2 |
Update to not use deprecated mesonconf
Diffstat (limited to 'docs/markdown/FAQ.md')
-rw-r--r-- | docs/markdown/FAQ.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/FAQ.md b/docs/markdown/FAQ.md index 2d28137..2023c7e 100644 --- a/docs/markdown/FAQ.md +++ b/docs/markdown/FAQ.md @@ -144,7 +144,7 @@ This defaults to `c++11` on GCC compilers. Suppose you want to use `c++14` inste project('foobar', 'cpp', default_options : ['cpp_std=c++14']) ``` -But when you recompile, it still uses `c++11`. The reason for this is that default options are only looked at when you are setting up a build directory for the very first time. After that the setting is considered to have a value and thus the default value is ignored. To change an existing build dir to `c++14`, either reconfigure your build dir with `mesonconf` or delete the build dir and recreate it from scratch. +But when you recompile, it still uses `c++11`. The reason for this is that default options are only looked at when you are setting up a build directory for the very first time. After that the setting is considered to have a value and thus the default value is ignored. To change an existing build dir to `c++14`, either reconfigure your build dir with `meson configure` or delete the build dir and recreate it from scratch. ## Does wrap download sources behind my back? |