annotate src/zlib-1.2.8/contrib/dotzlib/readme.txt @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 5b4145a0d408
children
rev   line source
cannam@128 1 This directory contains a .Net wrapper class library for the ZLib1.dll
cannam@128 2
cannam@128 3 The wrapper includes support for inflating/deflating memory buffers,
cannam@128 4 .Net streaming wrappers for the gz streams part of zlib, and wrappers
cannam@128 5 for the checksum parts of zlib. See DotZLib/UnitTests.cs for examples.
cannam@128 6
cannam@128 7 Directory structure:
cannam@128 8 --------------------
cannam@128 9
cannam@128 10 LICENSE_1_0.txt - License file.
cannam@128 11 readme.txt - This file.
cannam@128 12 DotZLib.chm - Class library documentation
cannam@128 13 DotZLib.build - NAnt build file
cannam@128 14 DotZLib.sln - Microsoft Visual Studio 2003 solution file
cannam@128 15
cannam@128 16 DotZLib\*.cs - Source files for the class library
cannam@128 17
cannam@128 18 Unit tests:
cannam@128 19 -----------
cannam@128 20 The file DotZLib/UnitTests.cs contains unit tests for use with NUnit 2.1 or higher.
cannam@128 21 To include unit tests in the build, define nunit before building.
cannam@128 22
cannam@128 23
cannam@128 24 Build instructions:
cannam@128 25 -------------------
cannam@128 26
cannam@128 27 1. Using Visual Studio.Net 2003:
cannam@128 28 Open DotZLib.sln in VS.Net and build from there. Output file (DotZLib.dll)
cannam@128 29 will be found ./DotZLib/bin/release or ./DotZLib/bin/debug, depending on
cannam@128 30 you are building the release or debug version of the library. Check
cannam@128 31 DotZLib/UnitTests.cs for instructions on how to include unit tests in the
cannam@128 32 build.
cannam@128 33
cannam@128 34 2. Using NAnt:
cannam@128 35 Open a command prompt with access to the build environment and run nant
cannam@128 36 in the same directory as the DotZLib.build file.
cannam@128 37 You can define 2 properties on the nant command-line to control the build:
cannam@128 38 debug={true|false} to toggle between release/debug builds (default=true).
cannam@128 39 nunit={true|false} to include or esclude unit tests (default=true).
cannam@128 40 Also the target clean will remove binaries.
cannam@128 41 Output file (DotZLib.dll) will be found in either ./DotZLib/bin/release
cannam@128 42 or ./DotZLib/bin/debug, depending on whether you are building the release
cannam@128 43 or debug version of the library.
cannam@128 44
cannam@128 45 Examples:
cannam@128 46 nant -D:debug=false -D:nunit=false
cannam@128 47 will build a release mode version of the library without unit tests.
cannam@128 48 nant
cannam@128 49 will build a debug version of the library with unit tests
cannam@128 50 nant clean
cannam@128 51 will remove all previously built files.
cannam@128 52
cannam@128 53
cannam@128 54 ---------------------------------
cannam@128 55 Copyright (c) Henrik Ravn 2004
cannam@128 56
cannam@128 57 Use, modification and distribution are subject to the Boost Software License, Version 1.0.
cannam@128 58 (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)