aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/filter
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/hybrid/filter')
-rw-r--r--dist/examples/cxx/hybrid/filter/makefile57
-rw-r--r--dist/examples/cxx/hybrid/filter/nmakefile54
2 files changed, 111 insertions, 0 deletions
diff --git a/dist/examples/cxx/hybrid/filter/makefile b/dist/examples/cxx/hybrid/filter/makefile
new file mode 100644
index 0000000..f1ea235
--- /dev/null
+++ b/dist/examples/cxx/hybrid/filter/makefile
@@ -0,0 +1,57 @@
+root := ../../../..
+
+include $(root)/build/cxx/rules.make
+
+# Build.
+#
+EXTRA_CPPFLAGS := -I$(root)/libxsde
+
+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 people.o people-pskel.o people-pimpl.o people-sskel.o \
+people-simpl.o people-custom-pimpl.o people-custom-simpl.o \
+$(root)/libxsde/xsde/libxsde.a
+
+driver.o: driver.cxx people.hxx people-pimpl.hxx people-simpl.hxx
+people.o: people.cxx people.hxx
+people-pskel.o: people-pskel.cxx
+people-pimpl.o: people-pimpl.cxx
+people-simpl.o: people-simpl.cxx
+people-simpl.o: people-simpl.cxx
+people-custom-pimpl.o: people-custom-pimpl.cxx people-custom-pimpl.hxx people.hxx
+people-custom-simpl.o: people-custom-simpl.cxx people-custom-simpl.hxx people.hxx
+
+.PRECIOUS: %.hxx %.cxx %-pskel.hxx %-pskel.cxx %-pimpl.hxx %-pimpl.cxx \
+%-sskel.hxx %-sskel.cxx %-simpl.hxx %-simpl.cxx
+
+%.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) \
+--generate-parser --generate-serializer --generate-aggregate \
+--custom-parser people=people_base_pimpl/people-custom-pimpl.hxx \
+--custom-serializer people=people_base_simpl/people-custom-simpl.hxx $<
+
+# Test.
+#
+.PHONY: test
+test: driver people.xml
+ ./driver people.xml
+
+# Clean.
+#
+.PHONY: clean
+clean:
+ rm -f people-pimpl.?xx people-pskel.?xx people-simpl.?xx \
+people-sskel.?xx people.?xx people-custom-pimpl.o people-custom-simpl.o \
+people-pimpl.o people-pskel.o people-simpl.o people-sskel.o \
+people.o driver.o driver
diff --git a/dist/examples/cxx/hybrid/filter/nmakefile b/dist/examples/cxx/hybrid/filter/nmakefile
new file mode 100644
index 0000000..b93ac66
--- /dev/null
+++ b/dist/examples/cxx/hybrid/filter/nmakefile
@@ -0,0 +1,54 @@
+root = ..\..\..\..
+
+!include $(root)\build\cxx\rules.nmake
+
+# Build.
+#
+EXTRA_CPPFLAGS = /I$(root)\libxsde
+
+!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 people.obj people-pskel.obj people-pimpl.obj \
+people-sskel.obj people-simpl.obj people-custom-pimpl.obj \
+people-custom-simpl.obj $(root)\libxsde\xsde\xsde.lib
+
+driver.obj: driver.cxx people.hxx people-pimpl.hxx people-simpl.hxx
+people.obj: people.cxx people.hxx
+people-pskel.obj: people-pskel.cxx
+people-pimpl.obj: people-pimpl.cxx
+people-simpl.obj: people-simpl.cxx
+people-simpl.obj: people-simpl.cxx
+people-custom-pimpl.obj: people-custom-pimpl.cxx people-custom-pimpl.hxx people.hxx
+people-custom-simpl.obj: people-custom-simpl.cxx people-custom-simpl.hxx people.hxx
+
+people.cxx people.hxx \
+people-pskel.cxx people-pskel.hxx people-pimpl.cxx people-pimpl.hxx \
+people-sskel.cxx people-sskel.hxx people-simpl.cxx people-simpl.hxx \
+: people.xsd
+ $(root)\bin\xsde.exe cxx-hybrid $(XSDFLAGS) $(EXTRA_XSDFLAGS) \
+--generate-parser --generate-serializer --generate-aggregate \
+--custom-parser people=people_base_pimpl/people-custom-pimpl.hxx \
+--custom-serializer people=people_base_simpl/people-custom-simpl.hxx people.xsd
+
+# Test.
+#
+test: driver.exe people.xml
+ .\driver.exe people.xml
+
+# Clean.
+#
+clean:
+ -del people-pimpl.?xx people-pskel.?xx people-simpl.?xx \
+people-sskel.?xx people.?xx people-custom-pimpl.obj people-custom-simpl.obj \
+people-pimpl.obj people-pskel.obj people-simpl.obj people-sskel.obj \
+people.obj driver.obj driver.exe