aboutsummaryrefslogtreecommitdiff
path: root/libstudxml/buildfile
blob: 668de6898bb78bceda6076fa2dd1353fa536d271 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# file      : libstudxml/buildfile
# copyright : Copyright (c) 2013-2017 Code Synthesis Tools CC
# license   : MIT; see accompanying LICENSE file

lib{studxml}:                                    \
               {hxx            }{ content      } \
               {hxx            }{ exception    } \
               {hxx            }{ forward      } \
               {hxx ixx txx cxx}{ parser       } \
               {hxx         cxx}{ qname        } \
               {hxx ixx     cxx}{ serializer   } \
               {hxx     txx cxx}{ value-traits } \
               {hxx            }{ version      } \
       details/{hxx            }{ config.hxx   } \
       details/{hxx            }{ export.hxx   } \
       details/{hxx            }{ post.hxx     } \
       details/{hxx            }{ pre.hxx      } \
       details/{h              }{ config       } \
       details/{h              }{ config-vc    }

# Expat. Note that we treat a whole bunch of its sources as files since they
# are private and #include's (including .c file).
#
lib{studxml}:                     \
details/expat/h{ expat          } \
details/expat/h{ expat_external } \
details/expat/c{ xmlparse       } \
details/expat/c{ xmlrole        } \
details/expat/c{ xmltok         } \
details/expat/file{ ascii.h asciitab.h config.h iasciitab.h internal.h \
latin1tab.h nametab.h utf8tab.h xmlrole.h xmltok.h xmltok_impl.c \
xmltok_impl.h xmltok_ns.c} \
details/expat/doc{LICENSE README}

details/expat/doc{README}@./: install = false
details/expat/doc{LICENSE}@./: install = doc/EXPAT-LICENSE

# Genx.
#
lib{studxml}:                \
details/genx/c{ char-props } \
details/genx/c{ genx       } \
details/genx/h{ genx       } \
details/genx/doc{LICENSE README}

hxx{version}: in{version} $src_root/file{manifest}
hxx{version}: dist = true

details/genx/doc{README}@./: install = false
details/genx/doc{LICENSE}@./: install = doc/GENX-LICENSE

# For pre-releases use the complete version to make sure they cannot be used
# in place of another pre-release or the final version.
#
if $version.pre_release
  lib{studxml}: bin.lib.version = @"-$version.project_id"
else
  lib{studxml}: bin.lib.version = @"-$version.major.$version.minor"

# We are a mixed C/C++ library, though C is implementatio-only, kind of: we
# need headers but not symbols.
#
cc.poptions =+ "-I$out_root" "-I$src_root"
obja{*}: cc.poptions += -DLIBSTUDXML_STATIC_BUILD
objs{*}: cc.poptions += -DLIBSTUDXML_SHARED_BUILD

lib{studxml}: cc.export.poptions = "-I$out_root" "-I$src_root"
liba{studxml}: cc.export.poptions += -DLIBSTUDXML_STATIC
libs{studxml}: cc.export.poptions += -DLIBSTUDXML_SHARED

# Install into the libstudxml/ subdirectory of, say, /usr/include/. Bold, I
# know.
#
install.include = $install.include/libstudxml/
install.include.subdirs = true # Recreate subdirectories.