From 76d23e639004517db8f9469d64ac1789f8449365 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 7 Jan 2010 13:50:11 +0200 Subject: Add support for ISO-8859-1 as application encoding New runtime configuration parameter, XSDE_ENCODING. New option, --char-encoding. New test, tests/cxx/hybrid/iso8859-1. --- dist/examples/cxx/serializer/minimal/makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'dist/examples/cxx/serializer/minimal/makefile') 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 -- cgit v1.1