aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/serializer
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/serializer')
-rw-r--r--dist/examples/cxx/serializer/hello/makefile4
-rw-r--r--dist/examples/cxx/serializer/hello/nmakefile4
-rw-r--r--dist/examples/cxx/serializer/library/makefile4
-rw-r--r--dist/examples/cxx/serializer/library/nmakefile4
-rw-r--r--dist/examples/cxx/serializer/minimal/makefile4
-rw-r--r--dist/examples/cxx/serializer/minimal/nmakefile4
-rw-r--r--dist/examples/cxx/serializer/polymorphism/makefile4
-rw-r--r--dist/examples/cxx/serializer/polymorphism/nmakefile4
-rw-r--r--dist/examples/cxx/serializer/polyroot/makefile4
-rw-r--r--dist/examples/cxx/serializer/polyroot/nmakefile4
-rw-r--r--dist/examples/cxx/serializer/wildcard/makefile4
-rw-r--r--dist/examples/cxx/serializer/wildcard/nmakefile4
12 files changed, 48 insertions, 0 deletions
diff --git a/dist/examples/cxx/serializer/hello/makefile b/dist/examples/cxx/serializer/hello/makefile
index a498aa4..90a752d 100644
--- a/dist/examples/cxx/serializer/hello/makefile
+++ b/dist/examples/cxx/serializer/hello/makefile
@@ -6,6 +6,10 @@ include $(root)/build/cxx/rules.make
#
EXTRA_CPPFLAGS := -I$(root)/libxsde
+ifeq ($(XSDE_ENCODING),iso8859-1)
+EXTRA_XSDFLAGS += --char-encoding iso8859-1
+endif
+
ifeq ($(XSDE_LONGLONG),n)
EXTRA_XSDFLAGS += --no-long-long
endif
diff --git a/dist/examples/cxx/serializer/hello/nmakefile b/dist/examples/cxx/serializer/hello/nmakefile
index f3b3d2c..f1043a3 100644
--- a/dist/examples/cxx/serializer/hello/nmakefile
+++ b/dist/examples/cxx/serializer/hello/nmakefile
@@ -6,6 +6,10 @@ root = ..\..\..\..
#
EXTRA_CPPFLAGS = /I$(root)\libxsde
+!if "$(XSDE_ENCODING)" == "iso8859-1"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --char-encoding iso8859-1
+!endif
+
!if "$(XSDE_LONGLONG)" == "n"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
diff --git a/dist/examples/cxx/serializer/library/makefile b/dist/examples/cxx/serializer/library/makefile
index cf275b9..a6166a3 100644
--- a/dist/examples/cxx/serializer/library/makefile
+++ b/dist/examples/cxx/serializer/library/makefile
@@ -6,6 +6,10 @@ include $(root)/build/cxx/rules.make
#
EXTRA_CPPFLAGS += -I$(root)/libxsde
+ifeq ($(XSDE_ENCODING),iso8859-1)
+EXTRA_XSDFLAGS += --char-encoding iso8859-1
+endif
+
ifeq ($(XSDE_LONGLONG),n)
EXTRA_XSDFLAGS += --no-long-long
endif
diff --git a/dist/examples/cxx/serializer/library/nmakefile b/dist/examples/cxx/serializer/library/nmakefile
index 9399f5d..71a21f0 100644
--- a/dist/examples/cxx/serializer/library/nmakefile
+++ b/dist/examples/cxx/serializer/library/nmakefile
@@ -6,6 +6,10 @@ root = ..\..\..\..
#
EXTRA_CPPFLAGS = /I$(root)\libxsde
+!if "$(XSDE_ENCODING)" == "iso8859-1"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --char-encoding iso8859-1
+!endif
+
!if "$(XSDE_LONGLONG)" == "n"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
diff --git a/dist/examples/cxx/serializer/minimal/makefile b/dist/examples/cxx/serializer/minimal/makefile
index 4c8c23c..5c17e24 100644
--- a/dist/examples/cxx/serializer/minimal/makefile
+++ b/dist/examples/cxx/serializer/minimal/makefile
@@ -8,6 +8,10 @@ EXTRA_CPPFLAGS += -I$(root)/libxsde
EXTRA_XSDFLAGS := --no-stl --no-exceptions
+ifeq ($(XSDE_ENCODING),iso8859-1)
+EXTRA_XSDFLAGS += --char-encoding iso8859-1
+endif
+
ifeq ($(XSDE_IOSTREAM),n)
EXTRA_XSDFLAGS += --no-iostream
endif
diff --git a/dist/examples/cxx/serializer/minimal/nmakefile b/dist/examples/cxx/serializer/minimal/nmakefile
index 7b1def3..0184770 100644
--- a/dist/examples/cxx/serializer/minimal/nmakefile
+++ b/dist/examples/cxx/serializer/minimal/nmakefile
@@ -8,6 +8,10 @@ EXTRA_CPPFLAGS = /I$(root)\libxsde
EXTRA_XSDFLAGS = --no-stl --no-exceptions
+!if "$(XSDE_ENCODING)" == "iso8859-1"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --char-encoding iso8859-1
+!endif
+
!if "$(XSDE_IOSTREAM)" == "n"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-iostream
!endif
diff --git a/dist/examples/cxx/serializer/polymorphism/makefile b/dist/examples/cxx/serializer/polymorphism/makefile
index a602422..6f5b4c8 100644
--- a/dist/examples/cxx/serializer/polymorphism/makefile
+++ b/dist/examples/cxx/serializer/polymorphism/makefile
@@ -6,6 +6,10 @@ include $(root)/build/cxx/rules.make
#
EXTRA_CPPFLAGS += -I$(root)/libxsde
+ifeq ($(XSDE_ENCODING),iso8859-1)
+EXTRA_XSDFLAGS += --char-encoding iso8859-1
+endif
+
ifeq ($(XSDE_LONGLONG),n)
EXTRA_XSDFLAGS += --no-long-long
endif
diff --git a/dist/examples/cxx/serializer/polymorphism/nmakefile b/dist/examples/cxx/serializer/polymorphism/nmakefile
index ad10eea..75e9d7c 100644
--- a/dist/examples/cxx/serializer/polymorphism/nmakefile
+++ b/dist/examples/cxx/serializer/polymorphism/nmakefile
@@ -6,6 +6,10 @@ root = ..\..\..\..
#
EXTRA_CPPFLAGS = /I$(root)\libxsde
+!if "$(XSDE_ENCODING)" == "iso8859-1"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --char-encoding iso8859-1
+!endif
+
!if "$(XSDE_LONGLONG)" == "n"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
diff --git a/dist/examples/cxx/serializer/polyroot/makefile b/dist/examples/cxx/serializer/polyroot/makefile
index a602422..6f5b4c8 100644
--- a/dist/examples/cxx/serializer/polyroot/makefile
+++ b/dist/examples/cxx/serializer/polyroot/makefile
@@ -6,6 +6,10 @@ include $(root)/build/cxx/rules.make
#
EXTRA_CPPFLAGS += -I$(root)/libxsde
+ifeq ($(XSDE_ENCODING),iso8859-1)
+EXTRA_XSDFLAGS += --char-encoding iso8859-1
+endif
+
ifeq ($(XSDE_LONGLONG),n)
EXTRA_XSDFLAGS += --no-long-long
endif
diff --git a/dist/examples/cxx/serializer/polyroot/nmakefile b/dist/examples/cxx/serializer/polyroot/nmakefile
index ad10eea..75e9d7c 100644
--- a/dist/examples/cxx/serializer/polyroot/nmakefile
+++ b/dist/examples/cxx/serializer/polyroot/nmakefile
@@ -6,6 +6,10 @@ root = ..\..\..\..
#
EXTRA_CPPFLAGS = /I$(root)\libxsde
+!if "$(XSDE_ENCODING)" == "iso8859-1"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --char-encoding iso8859-1
+!endif
+
!if "$(XSDE_LONGLONG)" == "n"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
diff --git a/dist/examples/cxx/serializer/wildcard/makefile b/dist/examples/cxx/serializer/wildcard/makefile
index 9c99a98..742d8ff 100644
--- a/dist/examples/cxx/serializer/wildcard/makefile
+++ b/dist/examples/cxx/serializer/wildcard/makefile
@@ -6,6 +6,10 @@ include $(root)/build/cxx/rules.make
#
EXTRA_CPPFLAGS += -I$(root)/libxsde
+ifeq ($(XSDE_ENCODING),iso8859-1)
+EXTRA_XSDFLAGS += --char-encoding iso8859-1
+endif
+
ifeq ($(XSDE_LONGLONG),n)
EXTRA_XSDFLAGS += --no-long-long
endif
diff --git a/dist/examples/cxx/serializer/wildcard/nmakefile b/dist/examples/cxx/serializer/wildcard/nmakefile
index a6c0feb..9ca6d8c 100644
--- a/dist/examples/cxx/serializer/wildcard/nmakefile
+++ b/dist/examples/cxx/serializer/wildcard/nmakefile
@@ -6,6 +6,10 @@ root = ..\..\..\..
#
EXTRA_CPPFLAGS = /I$(root)\libxsde
+!if "$(XSDE_ENCODING)" == "iso8859-1"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --char-encoding iso8859-1
+!endif
+
!if "$(XSDE_LONGLONG)" == "n"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif