diff options
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/ca/Makefile.mak | 1 | ||||
-rwxr-xr-x | cpp/src/ca/iceca.bat | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/cpp/src/ca/Makefile.mak b/cpp/src/ca/Makefile.mak index 382cf430a22..12a62f5f598 100644 --- a/cpp/src/ca/Makefile.mak +++ b/cpp/src/ca/Makefile.mak @@ -12,6 +12,7 @@ top_srcdir = ..\.. !include $(top_srcdir)/config/Make.rules.mak CA_FILES = iceca \ + iceca.bat \ ImportKey.class install:: diff --git a/cpp/src/ca/iceca.bat b/cpp/src/ca/iceca.bat new file mode 100755 index 00000000000..ac46d282fc5 --- /dev/null +++ b/cpp/src/ca/iceca.bat @@ -0,0 +1,13 @@ +@echo off
+REM **********************************************************************
+REM
+REM Copyright (c) 2003-2007 ZeroC, Inc. All rights reserved.
+REM
+REM This copy of Ice is licensed to you under the terms described in the
+REM ICE_LICENSE file included in this distribution.
+REM
+REM **********************************************************************
+
+REM .bat wrapper for iceca python script. Assumes python is in your PATH.
+
+@python %~dp0iceca %*
|