diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-08-16 12:24:03 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-08-16 12:25:35 +0300 |
commit | 5a6cad9799be32889c85ebd71c70a03fe4a2a861 (patch) | |
tree | 2d46303d76442838349dee9199c8046704dad1b2 | |
parent | e65a9b0ddd84b88ec6572892ea8d2e8bec4162be (diff) |
Add '--std c++11' CLI option in load, merge, and clean buildfiles
-rw-r--r-- | clean/buildfile | 6 | ||||
-rw-r--r-- | load/buildfile | 8 | ||||
-rw-r--r-- | migrate/buildfile | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/clean/buildfile b/clean/buildfile index 8cda205..a183ff5 100644 --- a/clean/buildfile +++ b/clean/buildfile @@ -18,9 +18,9 @@ if $cli.configured { cli.cxx{clean-options}: cli{clean} - cli.options += -I $src_root --include-with-brackets --include-prefix clean \ ---guard-prefix CLEAN --generate-specifier --page-usage print_ --ansi-color \ ---long-usage + cli.options += --std c++11 -I $src_root --include-with-brackets \ +--include-prefix clean --guard-prefix CLEAN --generate-specifier \ +--page-usage print_ --ansi-color --long-usage # Include the generated cli files into the distribution and don't remove # them when cleaning in src (so that clean results in a state identical to diff --git a/load/buildfile b/load/buildfile index 11252b2..493d067 100644 --- a/load/buildfile +++ b/load/buildfile @@ -18,10 +18,10 @@ if $cli.configured { cli.cxx{load-options}: cli{load} - cli.options += -I $src_root --include-with-brackets --include-prefix load \ ---guard-prefix LOAD --generate-specifier --page-usage print_ --ansi-color \ ---cxx-prologue "#include <load/types-parsers.hxx>" \ ---long-usage + cli.options += --std c++11 -I $src_root --include-with-brackets \ +--include-prefix load --guard-prefix LOAD --generate-specifier \ +--cxx-prologue "#include <load/types-parsers.hxx>" --page-usage print_ \ +--ansi-color --long-usage # Include the generated cli files into the distribution and don't remove # them when cleaning in src (so that clean results in a state identical to diff --git a/migrate/buildfile b/migrate/buildfile index a10390b..0fd6558 100644 --- a/migrate/buildfile +++ b/migrate/buildfile @@ -18,7 +18,7 @@ if $cli.configured { cli.cxx{migrate-options}: cli{migrate} - cli.options += -I $src_root --include-with-brackets \ + cli.options += --std c++11 -I $src_root --include-with-brackets \ --include-prefix migrate --guard-prefix MIGRATE --generate-specifier \ --page-usage print_ --ansi-color --long-usage |