aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/hello
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/hybrid/hello')
-rw-r--r--dist/examples/cxx/hybrid/hello/makefile4
-rw-r--r--dist/examples/cxx/hybrid/hello/nmakefile4
2 files changed, 8 insertions, 0 deletions
diff --git a/dist/examples/cxx/hybrid/hello/makefile b/dist/examples/cxx/hybrid/hello/makefile
index 5499a21..9b2130d 100644
--- a/dist/examples/cxx/hybrid/hello/makefile
+++ b/dist/examples/cxx/hybrid/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_STL),n)
EXTRA_XSDFLAGS += --no-stl
endif
diff --git a/dist/examples/cxx/hybrid/hello/nmakefile b/dist/examples/cxx/hybrid/hello/nmakefile
index ea80a40..59d7111 100644
--- a/dist/examples/cxx/hybrid/hello/nmakefile
+++ b/dist/examples/cxx/hybrid/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_STL)" == "n"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-stl
!endif