summaryrefslogtreecommitdiff
path: root/xsd-tests/cxx/tree/prefix/buildfile
blob: 48fcd7252b23bed3c2c669314394626a41a439ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# file      : cxx/tree/prefix/buildfile
# license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

import libs  = libxsd%lib{xsd}
import libs += libxerces-c%lib{xerces-c}

fs = foo bar test

exe{driver}: {hxx cxx}{* -{$fs}} {hxx ixx cxx}{$fs} $libs

exe{driver}: xml{test}:    test.input  = true
exe{driver}: file{output}: test.stdout = true

for f: $fs
{
  <{hxx ixx cxx}{$f}>: xsd{$f} $xsd
  {{
    $xsd cxx-tree --std c++11          \
         --generate-inline             \
         --generate-serialization      \
         --generate-polymorphic        \
         --polymorphic-type 'foo#base' \
         --root-element root           \
         --output-dir $out_base        \
         $path($<[0])
  }}
}

cxx.poptions =+ "-I$out_base"