diff options
| author | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-02 18:51:45 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-02 18:51:45 +0300 |
| commit | d3261e64152397db2dca4d691a990c6bc2a6f4dd (patch) | |
| tree | fac2f7be638651181a72453d714f0f96675c2b8b /archived/ptlibzippy/contrib/dotzlib/readme.txt | |
| parent | 31b9a8949ed0a288143e23bf739f2eb64fdc63be (diff) | |
| download | Project-Tick-d3261e64152397db2dca4d691a990c6bc2a6f4dd.tar.gz Project-Tick-d3261e64152397db2dca4d691a990c6bc2a6f4dd.zip | |
NOISSUE add archived projects
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'archived/ptlibzippy/contrib/dotzlib/readme.txt')
| -rw-r--r-- | archived/ptlibzippy/contrib/dotzlib/readme.txt | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/archived/ptlibzippy/contrib/dotzlib/readme.txt b/archived/ptlibzippy/contrib/dotzlib/readme.txt new file mode 100644 index 0000000000..c4dff4785b --- /dev/null +++ b/archived/ptlibzippy/contrib/dotzlib/readme.txt @@ -0,0 +1,61 @@ +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 PTlibzippy, and wrappers +for the checksum parts of PTlibzippy. See DotPTLib/UnitTests.cs for examples. + +Directory structure: +-------------------- + +LICENSE_1_0.txt - License file. +readme.txt - This file. +DotPTLib.chm - Class library documentation +DotPTLib.build - NAnt build file +DotPTLib.sln - Microsoft Visual Studio 2003 solution file + +DotPTLib\*.cs - Source files for the class library + +Unit tests: +----------- +The file DotPTLib/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 DotPTLib.sln in VS.Net and build from there. Output file (DotPTLib.dll) + will be found ./DotPTLib/bin/release or ./DotPTLib/bin/debug, depending on + you are building the release or debug version of the library. Check + DotPTLib/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 DotPTLib.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 exclude unit tests (default=true). + Also the target clean will remove binaries. + Output file (DotPTLib.dll) will be found in either ./DotPTLib/bin/release + or ./DotPTLib/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) + + +TODO: PLEASE TEST IN WINDOWS ENVIRONMENT |
