summaryrefslogtreecommitdiffstats
path: root/zlib/contrib/dotzlib/readme.txt
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2016-10-18 17:28:43 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2016-10-18 17:28:43 (GMT)
commitba065c2de121da1c1dfddd0aa587d10e7e150f05 (patch)
tree5526dc035f790dbcf88de8364c5c5dd3084124c9 /zlib/contrib/dotzlib/readme.txt
parent912e82088edadbdbf95d594f93ddc9dd99a305f8 (diff)
parente284977bb287580bd3ec509d222706a8bc2c8dec (diff)
downloadblt-ba065c2de121da1c1dfddd0aa587d10e7e150f05.zip
blt-ba065c2de121da1c1dfddd0aa587d10e7e150f05.tar.gz
blt-ba065c2de121da1c1dfddd0aa587d10e7e150f05.tar.bz2
Merge commit 'e284977bb287580bd3ec509d222706a8bc2c8dec' as 'zlib'
Diffstat (limited to 'zlib/contrib/dotzlib/readme.txt')
-rw-r--r--zlib/contrib/dotzlib/readme.txt58
1 files changed, 58 insertions, 0 deletions
diff --git a/zlib/contrib/dotzlib/readme.txt b/zlib/contrib/dotzlib/readme.txt
new file mode 100644
index 0000000..b239572
--- /dev/null
+++ b/zlib/contrib/dotzlib/readme.txt
@@ -0,0 +1,58 @@
+This directory contains a .Net wrapper class library for the ZLib1.dll
+
+The wrapper includes support for inflating/deflating memory buffers,
+.Net streaming wrappers for the gz streams part of zlib, and wrappers
+for the checksum parts of zlib. See DotZLib/UnitTests.cs for examples.
+
+Directory structure:
+--------------------
+
+LICENSE_1_0.txt - License file.
+readme.txt - This file.
+DotZLib.chm - Class library documentation
+DotZLib.build - NAnt build file
+DotZLib.sln - Microsoft Visual Studio 2003 solution file
+
+DotZLib\*.cs - Source files for the class library
+
+Unit tests:
+-----------
+The file DotZLib/UnitTests.cs contains unit tests for use with NUnit 2.1 or higher.
+To include unit tests in the build, define nunit before building.
+
+
+Build instructions:
+-------------------
+
+1. Using Visual Studio.Net 2003:
+ Open DotZLib.sln in VS.Net and build from there. Output file (DotZLib.dll)
+ will be found ./DotZLib/bin/release or ./DotZLib/bin/debug, depending on
+ you are building the release or debug version of the library. Check
+ DotZLib/UnitTests.cs for instructions on how to include unit tests in the
+ build.
+
+2. Using NAnt:
+ Open a command prompt with access to the build environment and run nant
+ in the same directory as the DotZLib.build file.
+ You can define 2 properties on the nant command-line to control the build:
+ debug={true|false} to toggle between release/debug builds (default=true).
+ nunit={true|false} to include or esclude unit tests (default=true).
+ Also the target clean will remove binaries.
+ Output file (DotZLib.dll) will be found in either ./DotZLib/bin/release
+ or ./DotZLib/bin/debug, depending on whether you are building the release
+ or debug version of the library.
+
+ Examples:
+ nant -D:debug=false -D:nunit=false
+ will build a release mode version of the library without unit tests.
+ nant
+ will build a debug version of the library with unit tests
+ nant clean
+ will remove all previously built files.
+
+
+---------------------------------
+Copyright (c) Henrik Ravn 2004
+
+Use, modification and distribution are subject to the Boost Software License, Version 1.0.
+(See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)