diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-08-16 12:44:36 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-08-16 12:44:36 +0300 |
commit | 72aea46ebd6221466a1161f80041eaa5a5c402e1 (patch) | |
tree | 48bb0805c4a13037a6e091410b69b91dbacc73b7 | |
parent | 9e994312cc65644c62964c9483643e930f3689b4 (diff) |
Add '--std c++11' CLI option in buildfile
-rw-r--r-- | bbot/buildfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bbot/buildfile b/bbot/buildfile index f57edcb..4d10c94 100644 --- a/bbot/buildfile +++ b/bbot/buildfile @@ -81,8 +81,8 @@ if $cli.configured agent/cli.cxx{agent-options}: cli{agent/agent} worker/cli.cxx{worker-options}: cli{worker/worker} - cli.options += -I $src_root --include-with-brackets \ ---cxx-prologue "#include <bbot/types-parsers.hxx>" \ + cli.options += --std c++11 -I $src_root --include-with-brackets \ +--cxx-prologue "#include <bbot/types-parsers.hxx>" \ --cli-namespace bbot::cli --generate-specifier --generate-parse cli.cxx{common-options}: cli.options += --include-prefix bbot \ |