aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/parser/generated/nmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/parser/generated/nmakefile')
-rw-r--r--dist/examples/cxx/parser/generated/nmakefile68
1 files changed, 68 insertions, 0 deletions
diff --git a/dist/examples/cxx/parser/generated/nmakefile b/dist/examples/cxx/parser/generated/nmakefile
new file mode 100644
index 0000000..ee4597e
--- /dev/null
+++ b/dist/examples/cxx/parser/generated/nmakefile
@@ -0,0 +1,68 @@
+root = ..\..\..\..
+
+!include $(root)\build\cxx\rules.nmake
+
+# Build.
+#
+EXTRA_CPPFLAGS = /I$(root)\libxsde
+
+EXTRA_XSDFLAGS = --generate-print-impl --generate-test-driver
+
+# If you are basing your own code on this example and make changes
+# to the sample implementation and/or test driver, make sure you
+# remove this option or your changes will be lost forever.
+#
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --force-overwrite
+
+!if "$(XSDE_STL)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-stl
+!endif
+
+!if "$(XSDE_IOSTREAM)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-iostream
+!endif
+
+!if "$(XSDE_EXCEPTIONS)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-exceptions
+!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
+
+!if "$(XSDE_POLYMORPHIC)" == "y"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --runtime-polymorphic
+!endif
+
+library-pdriver.exe: library-pdriver.obj library-pskel.obj library-pimpl.obj $(root)\libxsde\xsde\xsde.lib
+
+library-pdriver.obj: library-pdriver.cxx library-pimpl.hxx library-pskel.hxx
+library-pimpl.obj: library-pimpl.cxx library-pimpl.hxx library-pskel.hxx
+library-pskel.obj: library-pskel.cxx library-pskel.hxx
+
+
+library-pskel.hxx library-pskel.cxx \
+library-pimpl.hxx library-pimpl.cxx \
+library-pdriver.cxx: library.xsd
+ $(root)\bin\xsde.exe cxx-parser $(XSDFLAGS) $(EXTRA_XSDFLAGS) library.xsd
+
+
+# Test.
+#
+test: library-pdriver.exe library.xml
+ .\library-pdriver.exe library.xml
+
+
+# Clean.
+#
+clean:
+ -del library-pdriver.?xx library-pimpl.?xx library-pskel.?xx
+ -del library-pdriver.obj library-pimpl.obj library-pskel.obj library-pdriver.exe