diff options
Diffstat (limited to 'cpp/test/Ice/custom/Makefile.mk')
-rw-r--r-- | cpp/test/Ice/custom/Makefile.mk | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/cpp/test/Ice/custom/Makefile.mk b/cpp/test/Ice/custom/Makefile.mk new file mode 100644 index 00000000000..3a40e81bdfc --- /dev/null +++ b/cpp/test/Ice/custom/Makefile.mk @@ -0,0 +1,35 @@ +# ********************************************************************** +# +# Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. +# +# This copy of Ice is licensed to you under the terms described in the +# ICE_LICENSE file included in this distribution. +# +# ********************************************************************** + +$(test)_cppflags = -DSTRING_VIEW_IGNORE_STRING_CONVERTER + +$(test)_client_sources = Client.cpp \ + AllTests.cpp \ + Test.ice \ + Wstring.ice \ + MyByteSeq.cpp \ + StringConverterI.cpp + +$(test)_server_sources = Server.cpp \ + TestI.cpp \ + WstringI.cpp \ + Test.ice \ + Wstring.ice \ + MyByteSeq.cpp \ + StringConverterI.cpp + +$(test)_serveramd_sources = ServerAMD.cpp \ + TestAMDI.cpp \ + WstringAMDI.cpp \ + TestAMD.ice \ + WstringAMD.ice \ + MyByteSeq.cpp \ + StringConverterI.cpp + +tests += $(test) |