diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2018-05-04 00:02:23 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2018-05-04 00:02:23 +0300 |
commit | 1b9b56216ca3cbfd882a8186b3da079e3ecffc55 (patch) | |
tree | fc489991c9453209d98e996ed3110959c3d1adff | |
parent | 434fe789dc63375ba31b58e47144d9b4457babed (diff) |
Adjust to new scope syntax
-rw-r--r-- | build/export.build | 2 | ||||
-rw-r--r-- | libstudxml/buildfile | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/build/export.build b/build/export.build index 2319168..c5125f1 100644 --- a/build/export.build +++ b/build/export.build @@ -2,7 +2,7 @@ # copyright : Copyright (c) 2013-2017 Code Synthesis Tools CC # license : MIT; see accompanying LICENSE file -$out_root/: +$out_root/ { include libstudxml/ } diff --git a/libstudxml/buildfile b/libstudxml/buildfile index 6093e24..a46ddea 100644 --- a/libstudxml/buildfile +++ b/libstudxml/buildfile @@ -47,8 +47,8 @@ if ($c.class == 'gcc') # Disable warnings that pop up with -Wextra (e.g, -fimplicit-fallthrough) # in C implementation details. # - details/expat/: c.coptions += -Wno-extra - details/genx/: c.coptions += -Wno-extra + details/expat/ c.coptions += -Wno-extra + details/genx/ c.coptions += -Wno-extra } # We are a mixed C/C++ library, though C is implementatio-only, kind of: we |