aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/binary/custom
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/hybrid/binary/custom')
-rw-r--r--dist/examples/cxx/hybrid/binary/custom/makefile70
-rw-r--r--dist/examples/cxx/hybrid/binary/custom/nmakefile68
-rw-r--r--dist/examples/cxx/hybrid/binary/custom/options8
3 files changed, 146 insertions, 0 deletions
diff --git a/dist/examples/cxx/hybrid/binary/custom/makefile b/dist/examples/cxx/hybrid/binary/custom/makefile
new file mode 100644
index 0000000..c0e57ad
--- /dev/null
+++ b/dist/examples/cxx/hybrid/binary/custom/makefile
@@ -0,0 +1,70 @@
+root := ../../../../..
+
+include $(root)/build/cxx/rules.make
+
+# Build.
+#
+EXTRA_CPPFLAGS := -I$(root)/libxsde
+
+ifeq ($(XSDE_STL),n)
+EXTRA_XSDFLAGS += --no-stl
+endif
+
+ifeq ($(XSDE_LONGLONG),n)
+EXTRA_XSDFLAGS += --no-long-long
+endif
+
+ifeq ($(XSDE_PARSER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-validation
+endif
+
+ifeq ($(XSDE_REUSE_STYLE),mixin)
+EXTRA_XSDFLAGS += --reuse-style-mixin
+endif
+
+driver: driver.o library.o library-pskel.o library-pimpl.o \
+library-sskel.o library-simpl.o exceptions.o orawstream.o \
+irawstream.o $(root)/libxsde/xsde/libxsde.a
+
+driver.o: driver.cxx library.hxx library-pimpl.hxx library-simpl.hxx
+exceptions.o: exceptions.cxx
+orawstream.o: orawstream.cxx xml-schema.hxx
+irawstream.o: irawstream.cxx xml-schema.hxx
+library.o: library.cxx library.hxx
+library-pskel.o: library-pskel.cxx library-pskel.hxx
+library-pimpl.o: library-pimpl.cxx library-pskel.hxx
+library-simpl.o: library-simpl.cxx library-simpl.hxx
+library-simpl.o: library-simpl.cxx library-simpl.hxx
+
+library.hxx: xml-schema.hxx
+library-pskel.hxx: xml-schema-pskel.hxx
+library-pimpl.hxx: xml-schema-pskel.hxx
+library-sskel.hxx: xml-schema-sskel.hxx
+library-simpl.hxx: xml-schema-sskel.hxx
+
+.PRECIOUS: %.hxx %.cxx %-pskel.hxx %-pskel.cxx %-pimpl.hxx %-pimpl.cxx \
+%-sskel.hxx %-sskel.cxx %-simpl.hxx %-simpl.cxx
+
+xml-schema%hxx xml-schema-pskel%hxx xml-schema-sskel%hxx:
+ $(root)/bin/xsde cxx-hybrid $(XSDFLAGS) $(EXTRA_XSDFLAGS) \
+--generate-parser --generate-serializer --generate-xml-schema xml-schema.xsd
+
+%.hxx %.cxx %-pskel.hxx %-pskel.cxx %-pimpl.hxx %-pimpl.cxx \
+%-sskel.hxx %-sskel.cxx %-simpl.hxx %-simpl.cxx: %.xsd
+ $(root)/bin/xsde cxx-hybrid $(XSDFLAGS) $(EXTRA_XSDFLAGS) \
+--options-file options $<
+
+# Test.
+#
+.PHONY: test
+test: driver library.xml
+ ./driver library.xml
+
+# Clean.
+#
+.PHONY: clean
+clean:
+ rm -f xml-schema.hxx xml-schema-pskel.hxx xml-schema-sskel.hxx \
+library-pimpl.?xx library-pskel.?xx library-simpl.?xx library-sskel.?xx \
+library.?xx library-pimpl.o library-pskel.o library-simpl.o library-sskel.o \
+library.o irawstream.o orawstream.o exceptions.o driver.o driver
diff --git a/dist/examples/cxx/hybrid/binary/custom/nmakefile b/dist/examples/cxx/hybrid/binary/custom/nmakefile
new file mode 100644
index 0000000..b53db8e
--- /dev/null
+++ b/dist/examples/cxx/hybrid/binary/custom/nmakefile
@@ -0,0 +1,68 @@
+root = ..\..\..\..\..
+
+!include $(root)\build\cxx\rules.nmake
+
+# Build.
+#
+EXTRA_CPPFLAGS = /I$(root)\libxsde
+
+!if "$(XSDE_STL)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-stl
+!endif
+
+!if "$(XSDE_LONGLONG)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
+!endif
+
+!if "$(XSDE_PARSER_VALIDATION)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
+!endif
+
+!if "$(XSDE_REUSE_STYLE)" == "mixin"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --reuse-style-mixin
+!endif
+
+driver.exe: driver.obj library.obj library-pskel.obj library-pimpl.obj \
+library-sskel.obj library-simpl.obj exceptions.obj orawstream.obj \
+irawstream.obj $(root)\libxsde\xsde\xsde.lib
+
+driver.obj: driver.cxx library.hxx library-pimpl.hxx library-simpl.hxx
+exceptions.obj: exceptions.cxx
+orawstream.obj: orawstream.cxx xml-schema.hxx
+irawstream.obj: irawstream.cxx xml-schema.hxx
+library.obj: library.cxx library.hxx
+library-pskel.obj: library-pskel.cxx library-pskel.hxx
+library-pimpl.obj: library-pimpl.cxx library-pskel.hxx
+library-simpl.obj: library-simpl.cxx library-simpl.hxx
+library-simpl.obj: library-simpl.cxx library-simpl.hxx
+
+library.hxx: xml-schema.hxx
+library-pskel.hxx: xml-schema-pskel.hxx
+library-sskel.hxx: xml-schema-sskel.hxx
+library-sskel.hxx: xml-schema-sskel.hxx
+library-simpl.hxx: xml-schema-sskel.hxx
+
+xml-schema.hxx xml-schema-pskel.hxx xml-schema-sskel.hxx:
+ $(root)\bin\xsde.exe cxx-hybrid $(XSDFLAGS) $(EXTRA_XSDFLAGS) \
+--generate-parser --generate-serializer --generate-xml-schema xml-schema.xsd
+
+library.cxx library.hxx \
+library-pskel.cxx library-pskel.hxx library-pimpl.cxx library-pimpl.hxx \
+library-sskel.cxx library-sskel.hxx library-simpl.cxx library-simpl.hxx \
+: library.xsd
+ $(root)\bin\xsde.exe cxx-hybrid $(XSDFLAGS) $(EXTRA_XSDFLAGS) \
+--options-file options library.xsd
+
+# Test.
+#
+test: driver.exe library.xml
+ .\driver.exe library.xml
+
+# Clean.
+#
+clean:
+ -del xml-schema.hxx xml-schema-pskel.hxx xml-schema-sskel.hxx \
+library-pimpl.?xx library-pskel.?xx library-simpl.?xx library-sskel.?xx \
+library.?xx library-pimpl.obj library-pskel.obj library-simpl.obj \
+library-sskel.obj library.obj irawstream.obj orawstream.obj exceptions.obj \
+driver.obj driver.exe
diff --git a/dist/examples/cxx/hybrid/binary/custom/options b/dist/examples/cxx/hybrid/binary/custom/options
new file mode 100644
index 0000000..f37d345
--- /dev/null
+++ b/dist/examples/cxx/hybrid/binary/custom/options
@@ -0,0 +1,8 @@
+--generate-parser
+--generate-serializer
+--generate-aggregate
+--generate-insertion orawstream
+--hxx-prologue #include "orawstream.hxx"
+--generate-extraction irawstream
+--hxx-prologue #include "irawstream.hxx"
+--extern-xml-schema xml-schema.xsd