bio-velvet_underground 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.gitmodules +3 -0
- data/.travis.yml +13 -0
- data/Gemfile +19 -0
- data/LICENSE.txt +20 -0
- data/README.md +53 -0
- data/Rakefile +51 -0
- data/VERSION +1 -0
- data/ext/bioruby.patch +60 -0
- data/ext/mkrf_conf.rb +50 -0
- data/ext/src/Makefile +125 -0
- data/ext/src/src/allocArray.c +305 -0
- data/ext/src/src/allocArray.h +86 -0
- data/ext/src/src/autoOpen.c +107 -0
- data/ext/src/src/autoOpen.h +18 -0
- data/ext/src/src/binarySequences.c +813 -0
- data/ext/src/src/binarySequences.h +125 -0
- data/ext/src/src/concatenatedGraph.c +233 -0
- data/ext/src/src/concatenatedGraph.h +30 -0
- data/ext/src/src/concatenatedPreGraph.c +262 -0
- data/ext/src/src/concatenatedPreGraph.h +29 -0
- data/ext/src/src/correctedGraph.c +2642 -0
- data/ext/src/src/correctedGraph.h +32 -0
- data/ext/src/src/dfib.c +509 -0
- data/ext/src/src/dfib.h +69 -0
- data/ext/src/src/dfibHeap.c +89 -0
- data/ext/src/src/dfibHeap.h +39 -0
- data/ext/src/src/dfibpriv.h +105 -0
- data/ext/src/src/fib.c +628 -0
- data/ext/src/src/fib.h +78 -0
- data/ext/src/src/fibHeap.c +79 -0
- data/ext/src/src/fibHeap.h +41 -0
- data/ext/src/src/fibpriv.h +110 -0
- data/ext/src/src/globals.h +153 -0
- data/ext/src/src/graph.c +3983 -0
- data/ext/src/src/graph.h +233 -0
- data/ext/src/src/graphReConstruction.c +1472 -0
- data/ext/src/src/graphReConstruction.h +30 -0
- data/ext/src/src/graphStats.c +2167 -0
- data/ext/src/src/graphStats.h +72 -0
- data/ext/src/src/kmer.c +652 -0
- data/ext/src/src/kmer.h +73 -0
- data/ext/src/src/kmerOccurenceTable.c +236 -0
- data/ext/src/src/kmerOccurenceTable.h +44 -0
- data/ext/src/src/kseq.h +223 -0
- data/ext/src/src/locallyCorrectedGraph.c +557 -0
- data/ext/src/src/locallyCorrectedGraph.h +40 -0
- data/ext/src/src/passageMarker.c +677 -0
- data/ext/src/src/passageMarker.h +137 -0
- data/ext/src/src/preGraph.c +1717 -0
- data/ext/src/src/preGraph.h +106 -0
- data/ext/src/src/preGraphConstruction.c +990 -0
- data/ext/src/src/preGraphConstruction.h +26 -0
- data/ext/src/src/readCoherentGraph.c +557 -0
- data/ext/src/src/readCoherentGraph.h +30 -0
- data/ext/src/src/readSet.c +1734 -0
- data/ext/src/src/readSet.h +67 -0
- data/ext/src/src/recycleBin.c +199 -0
- data/ext/src/src/recycleBin.h +58 -0
- data/ext/src/src/roadMap.c +342 -0
- data/ext/src/src/roadMap.h +65 -0
- data/ext/src/src/run.c +318 -0
- data/ext/src/src/run.h +52 -0
- data/ext/src/src/run2.c +712 -0
- data/ext/src/src/scaffold.c +1876 -0
- data/ext/src/src/scaffold.h +64 -0
- data/ext/src/src/shortReadPairs.c +1243 -0
- data/ext/src/src/shortReadPairs.h +32 -0
- data/ext/src/src/splay.c +259 -0
- data/ext/src/src/splay.h +43 -0
- data/ext/src/src/splayTable.c +1315 -0
- data/ext/src/src/splayTable.h +31 -0
- data/ext/src/src/tightString.c +362 -0
- data/ext/src/src/tightString.h +82 -0
- data/ext/src/src/utility.c +199 -0
- data/ext/src/src/utility.h +98 -0
- data/ext/src/third-party/zlib-1.2.3/ChangeLog +855 -0
- data/ext/src/third-party/zlib-1.2.3/FAQ +339 -0
- data/ext/src/third-party/zlib-1.2.3/INDEX +51 -0
- data/ext/src/third-party/zlib-1.2.3/Makefile +154 -0
- data/ext/src/third-party/zlib-1.2.3/Makefile.in +154 -0
- data/ext/src/third-party/zlib-1.2.3/README +125 -0
- data/ext/src/third-party/zlib-1.2.3/adler32.c +149 -0
- data/ext/src/third-party/zlib-1.2.3/algorithm.txt +209 -0
- data/ext/src/third-party/zlib-1.2.3/amiga/Makefile.pup +66 -0
- data/ext/src/third-party/zlib-1.2.3/amiga/Makefile.sas +65 -0
- data/ext/src/third-party/zlib-1.2.3/as400/bndsrc +132 -0
- data/ext/src/third-party/zlib-1.2.3/as400/compile.clp +123 -0
- data/ext/src/third-party/zlib-1.2.3/as400/readme.txt +111 -0
- data/ext/src/third-party/zlib-1.2.3/as400/zlib.inc +331 -0
- data/ext/src/third-party/zlib-1.2.3/compress.c +79 -0
- data/ext/src/third-party/zlib-1.2.3/configure +459 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/README.contrib +71 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/buffer_demo.adb +106 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/mtest.adb +156 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/read.adb +156 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/readme.txt +65 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/test.adb +463 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-streams.adb +225 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-streams.ads +114 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-thin.adb +141 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib-thin.ads +450 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.adb +701 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.ads +328 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/ada/zlib.gpr +20 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm586/README.586 +43 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm586/match.S +364 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm686/README.686 +34 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/asm686/match.S +329 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/Makefile +8 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/README +4 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/blast.c +444 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/blast.h +71 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/test.pk +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/blast/test.txt +1 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/ZLib.pas +557 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/ZLibConst.pas +11 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/readme.txt +76 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/delphi/zlibd32.mak +93 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.build +33 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.chm +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib.sln +21 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/AssemblyInfo.cs +58 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/ChecksumImpl.cs +202 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/CircularBuffer.cs +83 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/CodecBase.cs +198 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/Deflater.cs +106 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/DotZLib.cs +288 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/DotZLib.csproj +141 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/GZipStream.cs +301 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/Inflater.cs +105 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/DotZLib/UnitTests.cs +274 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/LICENSE_1_0.txt +23 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/dotzlib/readme.txt +58 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/README +1 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/infback9.c +608 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/infback9.h +37 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inffix9.h +107 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inflate9.h +47 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inftree9.c +323 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/infback9/inftree9.h +55 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/inflate86/inffas86.c +1157 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/inflate86/inffast.S +1368 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream/test.cpp +24 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream/zfstream.cpp +329 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream/zfstream.h +128 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream2/zstream.h +307 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream2/zstream_test.cpp +25 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/README +35 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/TODO +17 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/test.cc +50 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/zfstream.cc +479 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/iostream3/zfstream.h +466 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masm686/match.asm +413 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/bld_ml64.bat +2 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/gvmat64.asm +513 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/gvmat64.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffas8664.c +186 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffasx64.asm +392 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/inffasx64.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx64/readme.txt +28 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/bld_ml32.bat +2 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32.asm +972 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/gvmat32c.c +62 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/inffas32.asm +1083 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/inffas32.obj +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/mkasm.bat +3 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/masmx86/readme.txt +21 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/ChangeLogUnzip +67 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/Makefile +25 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/crypt.h +132 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/ioapi.c +177 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/ioapi.h +75 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/iowin32.c +270 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/iowin32.h +21 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/miniunz.c +585 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/minizip.c +420 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/mztools.c +281 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/mztools.h +31 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/unzip.c +1598 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/unzip.h +354 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/zip.c +1219 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/minizip/zip.h +235 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/example.pas +599 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/readme.txt +76 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/zlibd32.mak +93 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/pascal/zlibpas.pas +236 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/Makefile +8 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/README +63 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/puff.c +837 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/puff.h +31 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/puff/zeros.raw +0 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/testzlib/testzlib.c +275 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/testzlib/testzlib.txt +10 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/untgz/Makefile +14 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/untgz/Makefile.msc +17 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/untgz/untgz.c +674 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/readme.txt +73 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/miniunz.vcproj +126 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/minizip.vcproj +126 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/testzlib.vcproj +126 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlib.rc +32 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibstat.vcproj +246 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.def +92 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.sln +78 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc7/zlibvc.vcproj +445 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/miniunz.vcproj +566 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/minizip.vcproj +563 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/testzlib.vcproj +948 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/testzlibdll.vcproj +567 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlib.rc +32 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibstat.vcproj +870 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.def +92 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.sln +144 -0
- data/ext/src/third-party/zlib-1.2.3/contrib/vstudio/vc8/zlibvc.vcproj +1219 -0
- data/ext/src/third-party/zlib-1.2.3/crc32.c +423 -0
- data/ext/src/third-party/zlib-1.2.3/crc32.h +441 -0
- data/ext/src/third-party/zlib-1.2.3/deflate.c +1736 -0
- data/ext/src/third-party/zlib-1.2.3/deflate.h +331 -0
- data/ext/src/third-party/zlib-1.2.3/example.c +565 -0
- data/ext/src/third-party/zlib-1.2.3/examples/README.examples +42 -0
- data/ext/src/third-party/zlib-1.2.3/examples/fitblk.c +233 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gun.c +693 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzappend.c +500 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzjoin.c +448 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzlog.c +413 -0
- data/ext/src/third-party/zlib-1.2.3/examples/gzlog.h +58 -0
- data/ext/src/third-party/zlib-1.2.3/examples/zlib_how.html +523 -0
- data/ext/src/third-party/zlib-1.2.3/examples/zpipe.c +191 -0
- data/ext/src/third-party/zlib-1.2.3/examples/zran.c +404 -0
- data/ext/src/third-party/zlib-1.2.3/gzio.c +1026 -0
- data/ext/src/third-party/zlib-1.2.3/infback.c +623 -0
- data/ext/src/third-party/zlib-1.2.3/inffast.c +318 -0
- data/ext/src/third-party/zlib-1.2.3/inffast.h +11 -0
- data/ext/src/third-party/zlib-1.2.3/inffixed.h +94 -0
- data/ext/src/third-party/zlib-1.2.3/inflate.c +1368 -0
- data/ext/src/third-party/zlib-1.2.3/inflate.h +115 -0
- data/ext/src/third-party/zlib-1.2.3/inftrees.c +329 -0
- data/ext/src/third-party/zlib-1.2.3/inftrees.h +55 -0
- data/ext/src/third-party/zlib-1.2.3/make_vms.com +461 -0
- data/ext/src/third-party/zlib-1.2.3/minigzip.c +322 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.bor +109 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.dj2 +104 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.emx +69 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.msc +106 -0
- data/ext/src/third-party/zlib-1.2.3/msdos/Makefile.tc +94 -0
- data/ext/src/third-party/zlib-1.2.3/old/Makefile.riscos +151 -0
- data/ext/src/third-party/zlib-1.2.3/old/README +3 -0
- data/ext/src/third-party/zlib-1.2.3/old/descrip.mms +48 -0
- data/ext/src/third-party/zlib-1.2.3/old/os2/Makefile.os2 +136 -0
- data/ext/src/third-party/zlib-1.2.3/old/os2/zlib.def +51 -0
- data/ext/src/third-party/zlib-1.2.3/old/visual-basic.txt +160 -0
- data/ext/src/third-party/zlib-1.2.3/old/zlib.html +971 -0
- data/ext/src/third-party/zlib-1.2.3/projects/README.projects +41 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/README.txt +73 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/example.dsp +278 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/minigzip.dsp +278 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/zlib.dsp +609 -0
- data/ext/src/third-party/zlib-1.2.3/projects/visualc6/zlib.dsw +59 -0
- data/ext/src/third-party/zlib-1.2.3/qnx/package.qpg +141 -0
- data/ext/src/third-party/zlib-1.2.3/trees.c +1219 -0
- data/ext/src/third-party/zlib-1.2.3/trees.h +128 -0
- data/ext/src/third-party/zlib-1.2.3/uncompr.c +61 -0
- data/ext/src/third-party/zlib-1.2.3/win32/DLL_FAQ.txt +397 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.bor +107 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.emx +69 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.gcc +141 -0
- data/ext/src/third-party/zlib-1.2.3/win32/Makefile.msc +126 -0
- data/ext/src/third-party/zlib-1.2.3/win32/VisualC.txt +3 -0
- data/ext/src/third-party/zlib-1.2.3/win32/zlib.def +60 -0
- data/ext/src/third-party/zlib-1.2.3/win32/zlib1.rc +39 -0
- data/ext/src/third-party/zlib-1.2.3/zconf.h +332 -0
- data/ext/src/third-party/zlib-1.2.3/zconf.in.h +332 -0
- data/ext/src/third-party/zlib-1.2.3/zlib.3 +159 -0
- data/ext/src/third-party/zlib-1.2.3/zlib.h +1357 -0
- data/ext/src/third-party/zlib-1.2.3/zutil.c +318 -0
- data/ext/src/third-party/zlib-1.2.3/zutil.h +269 -0
- data/lib/bio-velvet_underground.rb +12 -0
- data/lib/bio-velvet_underground/external/VERSION +1 -0
- data/lib/bio-velvet_underground/velvet_underground.rb +72 -0
- data/spec/binary_sequence_store_spec.rb +27 -0
- data/spec/data/1/CnyUnifiedSeq +0 -0
- data/spec/spec_helper.rb +31 -0
- metadata +456 -0
@@ -0,0 +1,445 @@
|
|
1
|
+
<?xml version="1.0" encoding = "Windows-1252"?>
|
2
|
+
<VisualStudioProject
|
3
|
+
ProjectType="Visual C++"
|
4
|
+
Version="7.00"
|
5
|
+
Name="zlibvc"
|
6
|
+
SccProjectName=""
|
7
|
+
SccLocalPath="">
|
8
|
+
<Platforms>
|
9
|
+
<Platform
|
10
|
+
Name="Win32"/>
|
11
|
+
</Platforms>
|
12
|
+
<Configurations>
|
13
|
+
<Configuration
|
14
|
+
Name="Debug|Win32"
|
15
|
+
OutputDirectory=".\DebugDll"
|
16
|
+
IntermediateDirectory=".\DebugDll"
|
17
|
+
ConfigurationType="2"
|
18
|
+
UseOfMFC="0"
|
19
|
+
ATLMinimizesCRunTimeLibraryUsage="FALSE">
|
20
|
+
<Tool
|
21
|
+
Name="VCCLCompilerTool"
|
22
|
+
Optimization="0"
|
23
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
24
|
+
PreprocessorDefinitions="WIN32,ZLIB_WINAPI,ASMV,ASMINF"
|
25
|
+
ExceptionHandling="FALSE"
|
26
|
+
RuntimeLibrary="1"
|
27
|
+
PrecompiledHeaderFile=".\DebugDll/zlibvc.pch"
|
28
|
+
AssemblerListingLocation=".\DebugDll/"
|
29
|
+
ObjectFile=".\DebugDll/"
|
30
|
+
ProgramDataBaseFileName=".\DebugDll/"
|
31
|
+
WarningLevel="3"
|
32
|
+
SuppressStartupBanner="TRUE"
|
33
|
+
DebugInformationFormat="4"/>
|
34
|
+
<Tool
|
35
|
+
Name="VCCustomBuildTool"/>
|
36
|
+
<Tool
|
37
|
+
Name="VCLinkerTool"
|
38
|
+
AdditionalOptions="/MACHINE:I386"
|
39
|
+
AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj"
|
40
|
+
OutputFile=".\DebugDll\zlibwapi.dll"
|
41
|
+
LinkIncremental="2"
|
42
|
+
SuppressStartupBanner="TRUE"
|
43
|
+
ModuleDefinitionFile=".\zlibvc.def"
|
44
|
+
GenerateDebugInformation="TRUE"
|
45
|
+
ProgramDatabaseFile=".\DebugDll/zlibwapi.pdb"
|
46
|
+
SubSystem="2"
|
47
|
+
ImportLibrary=".\DebugDll/zlibwapi.lib"/>
|
48
|
+
<Tool
|
49
|
+
Name="VCMIDLTool"
|
50
|
+
PreprocessorDefinitions="_DEBUG"
|
51
|
+
MkTypLibCompatible="TRUE"
|
52
|
+
SuppressStartupBanner="TRUE"
|
53
|
+
TargetEnvironment="1"
|
54
|
+
TypeLibraryName=".\DebugDll/zlibvc.tlb"/>
|
55
|
+
<Tool
|
56
|
+
Name="VCPostBuildEventTool"/>
|
57
|
+
<Tool
|
58
|
+
Name="VCPreBuildEventTool"/>
|
59
|
+
<Tool
|
60
|
+
Name="VCPreLinkEventTool"/>
|
61
|
+
<Tool
|
62
|
+
Name="VCResourceCompilerTool"
|
63
|
+
PreprocessorDefinitions="_DEBUG"
|
64
|
+
Culture="1036"/>
|
65
|
+
<Tool
|
66
|
+
Name="VCWebServiceProxyGeneratorTool"/>
|
67
|
+
<Tool
|
68
|
+
Name="VCWebDeploymentTool"/>
|
69
|
+
</Configuration>
|
70
|
+
<Configuration
|
71
|
+
Name="ReleaseWithoutAsm|Win32"
|
72
|
+
OutputDirectory=".\zlibDllWithoutAsm"
|
73
|
+
IntermediateDirectory=".\zlibDllWithoutAsm"
|
74
|
+
ConfigurationType="2"
|
75
|
+
UseOfMFC="0"
|
76
|
+
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
77
|
+
WholeProgramOptimization="TRUE">
|
78
|
+
<Tool
|
79
|
+
Name="VCCLCompilerTool"
|
80
|
+
InlineFunctionExpansion="1"
|
81
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
82
|
+
PreprocessorDefinitions="WIN32,ZLIB_WINAPI"
|
83
|
+
StringPooling="TRUE"
|
84
|
+
ExceptionHandling="FALSE"
|
85
|
+
RuntimeLibrary="0"
|
86
|
+
EnableFunctionLevelLinking="TRUE"
|
87
|
+
PrecompiledHeaderFile=".\zlibDllWithoutAsm/zlibvc.pch"
|
88
|
+
AssemblerOutput="2"
|
89
|
+
AssemblerListingLocation=".\zlibDllWithoutAsm/"
|
90
|
+
ObjectFile=".\zlibDllWithoutAsm/"
|
91
|
+
ProgramDataBaseFileName=".\zlibDllWithoutAsm/"
|
92
|
+
BrowseInformation="1"
|
93
|
+
WarningLevel="3"
|
94
|
+
SuppressStartupBanner="TRUE"/>
|
95
|
+
<Tool
|
96
|
+
Name="VCCustomBuildTool"/>
|
97
|
+
<Tool
|
98
|
+
Name="VCLinkerTool"
|
99
|
+
AdditionalOptions="/MACHINE:I386"
|
100
|
+
AdditionalDependencies="crtdll.lib"
|
101
|
+
OutputFile=".\zlibDllWithoutAsm\zlibwapi.dll"
|
102
|
+
LinkIncremental="1"
|
103
|
+
SuppressStartupBanner="TRUE"
|
104
|
+
IgnoreAllDefaultLibraries="TRUE"
|
105
|
+
ModuleDefinitionFile=".\zlibvc.def"
|
106
|
+
ProgramDatabaseFile=".\zlibDllWithoutAsm/zlibwapi.pdb"
|
107
|
+
GenerateMapFile="TRUE"
|
108
|
+
MapFileName=".\zlibDllWithoutAsm/zlibwapi.map"
|
109
|
+
SubSystem="2"
|
110
|
+
OptimizeForWindows98="1"
|
111
|
+
ImportLibrary=".\zlibDllWithoutAsm/zlibwapi.lib"/>
|
112
|
+
<Tool
|
113
|
+
Name="VCMIDLTool"
|
114
|
+
PreprocessorDefinitions="NDEBUG"
|
115
|
+
MkTypLibCompatible="TRUE"
|
116
|
+
SuppressStartupBanner="TRUE"
|
117
|
+
TargetEnvironment="1"
|
118
|
+
TypeLibraryName=".\zlibDllWithoutAsm/zlibvc.tlb"/>
|
119
|
+
<Tool
|
120
|
+
Name="VCPostBuildEventTool"/>
|
121
|
+
<Tool
|
122
|
+
Name="VCPreBuildEventTool"/>
|
123
|
+
<Tool
|
124
|
+
Name="VCPreLinkEventTool"/>
|
125
|
+
<Tool
|
126
|
+
Name="VCResourceCompilerTool"
|
127
|
+
PreprocessorDefinitions="NDEBUG"
|
128
|
+
Culture="1036"/>
|
129
|
+
<Tool
|
130
|
+
Name="VCWebServiceProxyGeneratorTool"/>
|
131
|
+
<Tool
|
132
|
+
Name="VCWebDeploymentTool"/>
|
133
|
+
</Configuration>
|
134
|
+
<Configuration
|
135
|
+
Name="ReleaseWithoutCrtdll|Win32"
|
136
|
+
OutputDirectory=".\zlibDllWithoutCrtDll"
|
137
|
+
IntermediateDirectory=".\zlibDllWithoutCrtDll"
|
138
|
+
ConfigurationType="2"
|
139
|
+
UseOfMFC="0"
|
140
|
+
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
141
|
+
WholeProgramOptimization="TRUE">
|
142
|
+
<Tool
|
143
|
+
Name="VCCLCompilerTool"
|
144
|
+
InlineFunctionExpansion="1"
|
145
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
146
|
+
PreprocessorDefinitions="WIN32,ZLIB_WINAPI,ASMV,ASMINF"
|
147
|
+
StringPooling="TRUE"
|
148
|
+
ExceptionHandling="FALSE"
|
149
|
+
RuntimeLibrary="0"
|
150
|
+
EnableFunctionLevelLinking="TRUE"
|
151
|
+
PrecompiledHeaderFile=".\zlibDllWithoutCrtDll/zlibvc.pch"
|
152
|
+
AssemblerOutput="2"
|
153
|
+
AssemblerListingLocation=".\zlibDllWithoutCrtDll/"
|
154
|
+
ObjectFile=".\zlibDllWithoutCrtDll/"
|
155
|
+
ProgramDataBaseFileName=".\zlibDllWithoutCrtDll/"
|
156
|
+
BrowseInformation="1"
|
157
|
+
WarningLevel="3"
|
158
|
+
SuppressStartupBanner="TRUE"/>
|
159
|
+
<Tool
|
160
|
+
Name="VCCustomBuildTool"/>
|
161
|
+
<Tool
|
162
|
+
Name="VCLinkerTool"
|
163
|
+
AdditionalOptions="/MACHINE:I386"
|
164
|
+
AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj "
|
165
|
+
OutputFile=".\zlibDllWithoutCrtDll\zlibwapi.dll"
|
166
|
+
LinkIncremental="1"
|
167
|
+
SuppressStartupBanner="TRUE"
|
168
|
+
IgnoreAllDefaultLibraries="FALSE"
|
169
|
+
ModuleDefinitionFile=".\zlibvc.def"
|
170
|
+
ProgramDatabaseFile=".\zlibDllWithoutCrtDll/zlibwapi.pdb"
|
171
|
+
GenerateMapFile="TRUE"
|
172
|
+
MapFileName=".\zlibDllWithoutCrtDll/zlibwapi.map"
|
173
|
+
SubSystem="2"
|
174
|
+
OptimizeForWindows98="1"
|
175
|
+
ImportLibrary=".\zlibDllWithoutCrtDll/zlibwapi.lib"/>
|
176
|
+
<Tool
|
177
|
+
Name="VCMIDLTool"
|
178
|
+
PreprocessorDefinitions="NDEBUG"
|
179
|
+
MkTypLibCompatible="TRUE"
|
180
|
+
SuppressStartupBanner="TRUE"
|
181
|
+
TargetEnvironment="1"
|
182
|
+
TypeLibraryName=".\zlibDllWithoutCrtDll/zlibvc.tlb"/>
|
183
|
+
<Tool
|
184
|
+
Name="VCPostBuildEventTool"/>
|
185
|
+
<Tool
|
186
|
+
Name="VCPreBuildEventTool"/>
|
187
|
+
<Tool
|
188
|
+
Name="VCPreLinkEventTool"/>
|
189
|
+
<Tool
|
190
|
+
Name="VCResourceCompilerTool"
|
191
|
+
PreprocessorDefinitions="NDEBUG"
|
192
|
+
Culture="1036"/>
|
193
|
+
<Tool
|
194
|
+
Name="VCWebServiceProxyGeneratorTool"/>
|
195
|
+
<Tool
|
196
|
+
Name="VCWebDeploymentTool"/>
|
197
|
+
</Configuration>
|
198
|
+
<Configuration
|
199
|
+
Name="ReleaseAxp|Win32"
|
200
|
+
OutputDirectory=".\zlibvc__"
|
201
|
+
IntermediateDirectory=".\zlibvc__"
|
202
|
+
ConfigurationType="2"
|
203
|
+
UseOfMFC="0"
|
204
|
+
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
205
|
+
WholeProgramOptimization="TRUE">
|
206
|
+
<Tool
|
207
|
+
Name="VCCLCompilerTool"
|
208
|
+
InlineFunctionExpansion="1"
|
209
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
210
|
+
PreprocessorDefinitions="WIN32,ZLIB_WINAPI"
|
211
|
+
StringPooling="TRUE"
|
212
|
+
ExceptionHandling="FALSE"
|
213
|
+
RuntimeLibrary="0"
|
214
|
+
EnableFunctionLevelLinking="TRUE"
|
215
|
+
PrecompiledHeaderFile=".\zlibvc__/zlibvc.pch"
|
216
|
+
AssemblerOutput="2"
|
217
|
+
AssemblerListingLocation=".\zlibvc__/"
|
218
|
+
ObjectFile=".\zlibvc__/"
|
219
|
+
ProgramDataBaseFileName=".\zlibvc__/"
|
220
|
+
BrowseInformation="1"
|
221
|
+
WarningLevel="3"
|
222
|
+
SuppressStartupBanner="TRUE"/>
|
223
|
+
<Tool
|
224
|
+
Name="VCCustomBuildTool"/>
|
225
|
+
<Tool
|
226
|
+
Name="VCLinkerTool"
|
227
|
+
AdditionalDependencies="crtdll.lib"
|
228
|
+
OutputFile="zlibvc__\zlibwapi.dll"
|
229
|
+
LinkIncremental="1"
|
230
|
+
SuppressStartupBanner="TRUE"
|
231
|
+
IgnoreAllDefaultLibraries="TRUE"
|
232
|
+
ModuleDefinitionFile=".\zlibvc.def"
|
233
|
+
ProgramDatabaseFile=".\zlibvc__/zlibwapi.pdb"
|
234
|
+
GenerateMapFile="TRUE"
|
235
|
+
MapFileName=".\zlibvc__/zlibwapi.map"
|
236
|
+
SubSystem="2"
|
237
|
+
ImportLibrary=".\zlibvc__/zlibwapi.lib"/>
|
238
|
+
<Tool
|
239
|
+
Name="VCMIDLTool"
|
240
|
+
PreprocessorDefinitions="NDEBUG"
|
241
|
+
MkTypLibCompatible="TRUE"
|
242
|
+
SuppressStartupBanner="TRUE"
|
243
|
+
TargetEnvironment="1"
|
244
|
+
TypeLibraryName=".\zlibvc__/zlibvc.tlb"/>
|
245
|
+
<Tool
|
246
|
+
Name="VCPostBuildEventTool"/>
|
247
|
+
<Tool
|
248
|
+
Name="VCPreBuildEventTool"/>
|
249
|
+
<Tool
|
250
|
+
Name="VCPreLinkEventTool"/>
|
251
|
+
<Tool
|
252
|
+
Name="VCResourceCompilerTool"
|
253
|
+
PreprocessorDefinitions="NDEBUG"
|
254
|
+
Culture="1036"/>
|
255
|
+
<Tool
|
256
|
+
Name="VCWebServiceProxyGeneratorTool"/>
|
257
|
+
<Tool
|
258
|
+
Name="VCWebDeploymentTool"/>
|
259
|
+
</Configuration>
|
260
|
+
<Configuration
|
261
|
+
Name="Release|Win32"
|
262
|
+
OutputDirectory=".\ReleaseDll"
|
263
|
+
IntermediateDirectory=".\ReleaseDll"
|
264
|
+
ConfigurationType="2"
|
265
|
+
UseOfMFC="0"
|
266
|
+
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
267
|
+
WholeProgramOptimization="TRUE">
|
268
|
+
<Tool
|
269
|
+
Name="VCCLCompilerTool"
|
270
|
+
InlineFunctionExpansion="1"
|
271
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
272
|
+
PreprocessorDefinitions="WIN32,ZLIB_WINAPI,ASMV,ASMINF"
|
273
|
+
StringPooling="TRUE"
|
274
|
+
ExceptionHandling="FALSE"
|
275
|
+
RuntimeLibrary="0"
|
276
|
+
EnableFunctionLevelLinking="TRUE"
|
277
|
+
PrecompiledHeaderFile=".\ReleaseDll/zlibvc.pch"
|
278
|
+
AssemblerOutput="2"
|
279
|
+
AssemblerListingLocation=".\ReleaseDll/"
|
280
|
+
ObjectFile=".\ReleaseDll/"
|
281
|
+
ProgramDataBaseFileName=".\ReleaseDll/"
|
282
|
+
BrowseInformation="1"
|
283
|
+
WarningLevel="3"
|
284
|
+
SuppressStartupBanner="TRUE"/>
|
285
|
+
<Tool
|
286
|
+
Name="VCCustomBuildTool"/>
|
287
|
+
<Tool
|
288
|
+
Name="VCLinkerTool"
|
289
|
+
AdditionalOptions="/MACHINE:I386"
|
290
|
+
AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj crtdll.lib"
|
291
|
+
OutputFile=".\ReleaseDll\zlibwapi.dll"
|
292
|
+
LinkIncremental="1"
|
293
|
+
SuppressStartupBanner="TRUE"
|
294
|
+
IgnoreAllDefaultLibraries="TRUE"
|
295
|
+
ModuleDefinitionFile=".\zlibvc.def"
|
296
|
+
ProgramDatabaseFile=".\ReleaseDll/zlibwapi.pdb"
|
297
|
+
GenerateMapFile="TRUE"
|
298
|
+
MapFileName=".\ReleaseDll/zlibwapi.map"
|
299
|
+
SubSystem="2"
|
300
|
+
OptimizeForWindows98="1"
|
301
|
+
ImportLibrary=".\ReleaseDll/zlibwapi.lib"/>
|
302
|
+
<Tool
|
303
|
+
Name="VCMIDLTool"
|
304
|
+
PreprocessorDefinitions="NDEBUG"
|
305
|
+
MkTypLibCompatible="TRUE"
|
306
|
+
SuppressStartupBanner="TRUE"
|
307
|
+
TargetEnvironment="1"
|
308
|
+
TypeLibraryName=".\Release/zlibvc.tlb"/>
|
309
|
+
<Tool
|
310
|
+
Name="VCPostBuildEventTool"/>
|
311
|
+
<Tool
|
312
|
+
Name="VCPreBuildEventTool"/>
|
313
|
+
<Tool
|
314
|
+
Name="VCPreLinkEventTool"/>
|
315
|
+
<Tool
|
316
|
+
Name="VCResourceCompilerTool"
|
317
|
+
PreprocessorDefinitions="NDEBUG"
|
318
|
+
Culture="1036"/>
|
319
|
+
<Tool
|
320
|
+
Name="VCWebServiceProxyGeneratorTool"/>
|
321
|
+
<Tool
|
322
|
+
Name="VCWebDeploymentTool"/>
|
323
|
+
</Configuration>
|
324
|
+
</Configurations>
|
325
|
+
<Files>
|
326
|
+
<Filter
|
327
|
+
Name="Source Files"
|
328
|
+
Filter="cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90">
|
329
|
+
<File
|
330
|
+
RelativePath="..\..\..\adler32.c">
|
331
|
+
</File>
|
332
|
+
<File
|
333
|
+
RelativePath="..\..\..\compress.c">
|
334
|
+
</File>
|
335
|
+
<File
|
336
|
+
RelativePath="..\..\..\crc32.c">
|
337
|
+
</File>
|
338
|
+
<File
|
339
|
+
RelativePath="..\..\..\deflate.c">
|
340
|
+
</File>
|
341
|
+
<File
|
342
|
+
RelativePath="..\..\masmx86\gvmat32c.c">
|
343
|
+
<FileConfiguration
|
344
|
+
Name="ReleaseWithoutAsm|Win32"
|
345
|
+
ExcludedFromBuild="TRUE">
|
346
|
+
<Tool
|
347
|
+
Name="VCCLCompilerTool"/>
|
348
|
+
</FileConfiguration>
|
349
|
+
</File>
|
350
|
+
<File
|
351
|
+
RelativePath="..\..\..\gzio.c">
|
352
|
+
</File>
|
353
|
+
<File
|
354
|
+
RelativePath="..\..\..\infback.c">
|
355
|
+
</File>
|
356
|
+
<File
|
357
|
+
RelativePath="..\..\..\inffast.c">
|
358
|
+
</File>
|
359
|
+
<File
|
360
|
+
RelativePath="..\..\..\inflate.c">
|
361
|
+
</File>
|
362
|
+
<File
|
363
|
+
RelativePath="..\..\..\inftrees.c">
|
364
|
+
</File>
|
365
|
+
<File
|
366
|
+
RelativePath="..\..\minizip\ioapi.c">
|
367
|
+
</File>
|
368
|
+
<File
|
369
|
+
RelativePath="..\..\minizip\iowin32.c">
|
370
|
+
</File>
|
371
|
+
<File
|
372
|
+
RelativePath="..\..\..\trees.c">
|
373
|
+
</File>
|
374
|
+
<File
|
375
|
+
RelativePath="..\..\..\uncompr.c">
|
376
|
+
</File>
|
377
|
+
<File
|
378
|
+
RelativePath="..\..\minizip\unzip.c">
|
379
|
+
<FileConfiguration
|
380
|
+
Name="Release|Win32">
|
381
|
+
<Tool
|
382
|
+
Name="VCCLCompilerTool"
|
383
|
+
AdditionalIncludeDirectories=""
|
384
|
+
PreprocessorDefinitions="ZLIB_INTERNAL"/>
|
385
|
+
</FileConfiguration>
|
386
|
+
</File>
|
387
|
+
<File
|
388
|
+
RelativePath="..\..\minizip\zip.c">
|
389
|
+
<FileConfiguration
|
390
|
+
Name="Release|Win32">
|
391
|
+
<Tool
|
392
|
+
Name="VCCLCompilerTool"
|
393
|
+
AdditionalIncludeDirectories=""
|
394
|
+
PreprocessorDefinitions="ZLIB_INTERNAL"/>
|
395
|
+
</FileConfiguration>
|
396
|
+
</File>
|
397
|
+
<File
|
398
|
+
RelativePath=".\zlib.rc">
|
399
|
+
</File>
|
400
|
+
<File
|
401
|
+
RelativePath=".\zlibvc.def">
|
402
|
+
</File>
|
403
|
+
<File
|
404
|
+
RelativePath="..\..\..\zutil.c">
|
405
|
+
</File>
|
406
|
+
</Filter>
|
407
|
+
<Filter
|
408
|
+
Name="Header Files"
|
409
|
+
Filter="h;hpp;hxx;hm;inl;fi;fd">
|
410
|
+
<File
|
411
|
+
RelativePath="..\..\..\deflate.h">
|
412
|
+
</File>
|
413
|
+
<File
|
414
|
+
RelativePath="..\..\..\infblock.h">
|
415
|
+
</File>
|
416
|
+
<File
|
417
|
+
RelativePath="..\..\..\infcodes.h">
|
418
|
+
</File>
|
419
|
+
<File
|
420
|
+
RelativePath="..\..\..\inffast.h">
|
421
|
+
</File>
|
422
|
+
<File
|
423
|
+
RelativePath="..\..\..\inftrees.h">
|
424
|
+
</File>
|
425
|
+
<File
|
426
|
+
RelativePath="..\..\..\infutil.h">
|
427
|
+
</File>
|
428
|
+
<File
|
429
|
+
RelativePath="..\..\..\zconf.h">
|
430
|
+
</File>
|
431
|
+
<File
|
432
|
+
RelativePath="..\..\..\zlib.h">
|
433
|
+
</File>
|
434
|
+
<File
|
435
|
+
RelativePath="..\..\..\zutil.h">
|
436
|
+
</File>
|
437
|
+
</Filter>
|
438
|
+
<Filter
|
439
|
+
Name="Resource Files"
|
440
|
+
Filter="ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe">
|
441
|
+
</Filter>
|
442
|
+
</Files>
|
443
|
+
<Globals>
|
444
|
+
</Globals>
|
445
|
+
</VisualStudioProject>
|
@@ -0,0 +1,566 @@
|
|
1
|
+
<?xml version="1.0" encoding="Windows-1252"?>
|
2
|
+
<VisualStudioProject
|
3
|
+
ProjectType="Visual C++"
|
4
|
+
Version="8,00"
|
5
|
+
Name="miniunz"
|
6
|
+
ProjectGUID="{C52F9E7B-498A-42BE-8DB4-85A15694382A}"
|
7
|
+
Keyword="Win32Proj"
|
8
|
+
>
|
9
|
+
<Platforms>
|
10
|
+
<Platform
|
11
|
+
Name="Win32"
|
12
|
+
/>
|
13
|
+
<Platform
|
14
|
+
Name="x64"
|
15
|
+
/>
|
16
|
+
<Platform
|
17
|
+
Name="Itanium"
|
18
|
+
/>
|
19
|
+
</Platforms>
|
20
|
+
<ToolFiles>
|
21
|
+
</ToolFiles>
|
22
|
+
<Configurations>
|
23
|
+
<Configuration
|
24
|
+
Name="Debug|Win32"
|
25
|
+
OutputDirectory="x86\MiniUnzip$(ConfigurationName)"
|
26
|
+
IntermediateDirectory="x86\MiniUnzip$(ConfigurationName)\Tmp"
|
27
|
+
ConfigurationType="1"
|
28
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
29
|
+
CharacterSet="2"
|
30
|
+
>
|
31
|
+
<Tool
|
32
|
+
Name="VCPreBuildEventTool"
|
33
|
+
/>
|
34
|
+
<Tool
|
35
|
+
Name="VCCustomBuildTool"
|
36
|
+
/>
|
37
|
+
<Tool
|
38
|
+
Name="VCXMLDataGeneratorTool"
|
39
|
+
/>
|
40
|
+
<Tool
|
41
|
+
Name="VCWebServiceProxyGeneratorTool"
|
42
|
+
/>
|
43
|
+
<Tool
|
44
|
+
Name="VCMIDLTool"
|
45
|
+
/>
|
46
|
+
<Tool
|
47
|
+
Name="VCCLCompilerTool"
|
48
|
+
Optimization="0"
|
49
|
+
AdditionalIncludeDirectories="..\..\..;..\..\minizip"
|
50
|
+
PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE"
|
51
|
+
MinimalRebuild="true"
|
52
|
+
BasicRuntimeChecks="0"
|
53
|
+
RuntimeLibrary="1"
|
54
|
+
BufferSecurityCheck="false"
|
55
|
+
UsePrecompiledHeader="0"
|
56
|
+
AssemblerListingLocation="$(IntDir)\"
|
57
|
+
WarningLevel="3"
|
58
|
+
Detect64BitPortabilityProblems="true"
|
59
|
+
DebugInformationFormat="4"
|
60
|
+
/>
|
61
|
+
<Tool
|
62
|
+
Name="VCManagedResourceCompilerTool"
|
63
|
+
/>
|
64
|
+
<Tool
|
65
|
+
Name="VCResourceCompilerTool"
|
66
|
+
/>
|
67
|
+
<Tool
|
68
|
+
Name="VCPreLinkEventTool"
|
69
|
+
/>
|
70
|
+
<Tool
|
71
|
+
Name="VCLinkerTool"
|
72
|
+
AdditionalDependencies="x86\ZlibDllDebug\zlibwapi.lib"
|
73
|
+
OutputFile="$(OutDir)/miniunz.exe"
|
74
|
+
LinkIncremental="2"
|
75
|
+
GenerateManifest="false"
|
76
|
+
GenerateDebugInformation="true"
|
77
|
+
ProgramDatabaseFile="$(OutDir)/miniunz.pdb"
|
78
|
+
SubSystem="1"
|
79
|
+
TargetMachine="1"
|
80
|
+
/>
|
81
|
+
<Tool
|
82
|
+
Name="VCALinkTool"
|
83
|
+
/>
|
84
|
+
<Tool
|
85
|
+
Name="VCManifestTool"
|
86
|
+
/>
|
87
|
+
<Tool
|
88
|
+
Name="VCXDCMakeTool"
|
89
|
+
/>
|
90
|
+
<Tool
|
91
|
+
Name="VCBscMakeTool"
|
92
|
+
/>
|
93
|
+
<Tool
|
94
|
+
Name="VCFxCopTool"
|
95
|
+
/>
|
96
|
+
<Tool
|
97
|
+
Name="VCAppVerifierTool"
|
98
|
+
/>
|
99
|
+
<Tool
|
100
|
+
Name="VCWebDeploymentTool"
|
101
|
+
/>
|
102
|
+
<Tool
|
103
|
+
Name="VCPostBuildEventTool"
|
104
|
+
/>
|
105
|
+
</Configuration>
|
106
|
+
<Configuration
|
107
|
+
Name="Debug|x64"
|
108
|
+
OutputDirectory="x64\MiniUnzip$(ConfigurationName)"
|
109
|
+
IntermediateDirectory="x64\MiniUnzip$(ConfigurationName)\Tmp"
|
110
|
+
ConfigurationType="1"
|
111
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
112
|
+
CharacterSet="2"
|
113
|
+
>
|
114
|
+
<Tool
|
115
|
+
Name="VCPreBuildEventTool"
|
116
|
+
/>
|
117
|
+
<Tool
|
118
|
+
Name="VCCustomBuildTool"
|
119
|
+
/>
|
120
|
+
<Tool
|
121
|
+
Name="VCXMLDataGeneratorTool"
|
122
|
+
/>
|
123
|
+
<Tool
|
124
|
+
Name="VCWebServiceProxyGeneratorTool"
|
125
|
+
/>
|
126
|
+
<Tool
|
127
|
+
Name="VCMIDLTool"
|
128
|
+
TargetEnvironment="3"
|
129
|
+
/>
|
130
|
+
<Tool
|
131
|
+
Name="VCCLCompilerTool"
|
132
|
+
Optimization="0"
|
133
|
+
AdditionalIncludeDirectories="..\..\..;..\..\minizip"
|
134
|
+
PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64"
|
135
|
+
MinimalRebuild="true"
|
136
|
+
BasicRuntimeChecks="0"
|
137
|
+
RuntimeLibrary="3"
|
138
|
+
BufferSecurityCheck="false"
|
139
|
+
UsePrecompiledHeader="0"
|
140
|
+
AssemblerListingLocation="$(IntDir)\"
|
141
|
+
WarningLevel="3"
|
142
|
+
Detect64BitPortabilityProblems="true"
|
143
|
+
DebugInformationFormat="3"
|
144
|
+
/>
|
145
|
+
<Tool
|
146
|
+
Name="VCManagedResourceCompilerTool"
|
147
|
+
/>
|
148
|
+
<Tool
|
149
|
+
Name="VCResourceCompilerTool"
|
150
|
+
/>
|
151
|
+
<Tool
|
152
|
+
Name="VCPreLinkEventTool"
|
153
|
+
/>
|
154
|
+
<Tool
|
155
|
+
Name="VCLinkerTool"
|
156
|
+
AdditionalDependencies="x64\ZlibDllDebug\zlibwapi.lib"
|
157
|
+
OutputFile="$(OutDir)/miniunz.exe"
|
158
|
+
LinkIncremental="2"
|
159
|
+
GenerateManifest="false"
|
160
|
+
GenerateDebugInformation="true"
|
161
|
+
ProgramDatabaseFile="$(OutDir)/miniunz.pdb"
|
162
|
+
SubSystem="1"
|
163
|
+
TargetMachine="17"
|
164
|
+
/>
|
165
|
+
<Tool
|
166
|
+
Name="VCALinkTool"
|
167
|
+
/>
|
168
|
+
<Tool
|
169
|
+
Name="VCManifestTool"
|
170
|
+
/>
|
171
|
+
<Tool
|
172
|
+
Name="VCXDCMakeTool"
|
173
|
+
/>
|
174
|
+
<Tool
|
175
|
+
Name="VCBscMakeTool"
|
176
|
+
/>
|
177
|
+
<Tool
|
178
|
+
Name="VCFxCopTool"
|
179
|
+
/>
|
180
|
+
<Tool
|
181
|
+
Name="VCAppVerifierTool"
|
182
|
+
/>
|
183
|
+
<Tool
|
184
|
+
Name="VCWebDeploymentTool"
|
185
|
+
/>
|
186
|
+
<Tool
|
187
|
+
Name="VCPostBuildEventTool"
|
188
|
+
/>
|
189
|
+
</Configuration>
|
190
|
+
<Configuration
|
191
|
+
Name="Debug|Itanium"
|
192
|
+
OutputDirectory="ia64\MiniUnzip$(ConfigurationName)"
|
193
|
+
IntermediateDirectory="ia64\MiniUnzip$(ConfigurationName)\Tmp"
|
194
|
+
ConfigurationType="1"
|
195
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
196
|
+
CharacterSet="2"
|
197
|
+
>
|
198
|
+
<Tool
|
199
|
+
Name="VCPreBuildEventTool"
|
200
|
+
/>
|
201
|
+
<Tool
|
202
|
+
Name="VCCustomBuildTool"
|
203
|
+
/>
|
204
|
+
<Tool
|
205
|
+
Name="VCXMLDataGeneratorTool"
|
206
|
+
/>
|
207
|
+
<Tool
|
208
|
+
Name="VCWebServiceProxyGeneratorTool"
|
209
|
+
/>
|
210
|
+
<Tool
|
211
|
+
Name="VCMIDLTool"
|
212
|
+
TargetEnvironment="2"
|
213
|
+
/>
|
214
|
+
<Tool
|
215
|
+
Name="VCCLCompilerTool"
|
216
|
+
Optimization="0"
|
217
|
+
AdditionalIncludeDirectories="..\..\..;..\..\minizip"
|
218
|
+
PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;_DEBUG;_CONSOLE;WIN64"
|
219
|
+
MinimalRebuild="true"
|
220
|
+
BasicRuntimeChecks="0"
|
221
|
+
RuntimeLibrary="3"
|
222
|
+
BufferSecurityCheck="false"
|
223
|
+
UsePrecompiledHeader="0"
|
224
|
+
AssemblerListingLocation="$(IntDir)\"
|
225
|
+
WarningLevel="3"
|
226
|
+
Detect64BitPortabilityProblems="true"
|
227
|
+
DebugInformationFormat="3"
|
228
|
+
/>
|
229
|
+
<Tool
|
230
|
+
Name="VCManagedResourceCompilerTool"
|
231
|
+
/>
|
232
|
+
<Tool
|
233
|
+
Name="VCResourceCompilerTool"
|
234
|
+
/>
|
235
|
+
<Tool
|
236
|
+
Name="VCPreLinkEventTool"
|
237
|
+
/>
|
238
|
+
<Tool
|
239
|
+
Name="VCLinkerTool"
|
240
|
+
AdditionalDependencies="ia64\ZlibDllDebug\zlibwapi.lib"
|
241
|
+
OutputFile="$(OutDir)/miniunz.exe"
|
242
|
+
LinkIncremental="2"
|
243
|
+
GenerateManifest="false"
|
244
|
+
GenerateDebugInformation="true"
|
245
|
+
ProgramDatabaseFile="$(OutDir)/miniunz.pdb"
|
246
|
+
SubSystem="1"
|
247
|
+
TargetMachine="5"
|
248
|
+
/>
|
249
|
+
<Tool
|
250
|
+
Name="VCALinkTool"
|
251
|
+
/>
|
252
|
+
<Tool
|
253
|
+
Name="VCManifestTool"
|
254
|
+
/>
|
255
|
+
<Tool
|
256
|
+
Name="VCXDCMakeTool"
|
257
|
+
/>
|
258
|
+
<Tool
|
259
|
+
Name="VCBscMakeTool"
|
260
|
+
/>
|
261
|
+
<Tool
|
262
|
+
Name="VCFxCopTool"
|
263
|
+
/>
|
264
|
+
<Tool
|
265
|
+
Name="VCAppVerifierTool"
|
266
|
+
/>
|
267
|
+
<Tool
|
268
|
+
Name="VCWebDeploymentTool"
|
269
|
+
/>
|
270
|
+
<Tool
|
271
|
+
Name="VCPostBuildEventTool"
|
272
|
+
/>
|
273
|
+
</Configuration>
|
274
|
+
<Configuration
|
275
|
+
Name="Release|Win32"
|
276
|
+
OutputDirectory="x86\MiniUnzip$(ConfigurationName)"
|
277
|
+
IntermediateDirectory="x86\MiniUnzip$(ConfigurationName)\Tmp"
|
278
|
+
ConfigurationType="1"
|
279
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
280
|
+
CharacterSet="2"
|
281
|
+
>
|
282
|
+
<Tool
|
283
|
+
Name="VCPreBuildEventTool"
|
284
|
+
/>
|
285
|
+
<Tool
|
286
|
+
Name="VCCustomBuildTool"
|
287
|
+
/>
|
288
|
+
<Tool
|
289
|
+
Name="VCXMLDataGeneratorTool"
|
290
|
+
/>
|
291
|
+
<Tool
|
292
|
+
Name="VCWebServiceProxyGeneratorTool"
|
293
|
+
/>
|
294
|
+
<Tool
|
295
|
+
Name="VCMIDLTool"
|
296
|
+
/>
|
297
|
+
<Tool
|
298
|
+
Name="VCCLCompilerTool"
|
299
|
+
Optimization="2"
|
300
|
+
InlineFunctionExpansion="1"
|
301
|
+
OmitFramePointers="true"
|
302
|
+
AdditionalIncludeDirectories="..\..\..;..\..\minizip"
|
303
|
+
PreprocessorDefinitions="WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE"
|
304
|
+
StringPooling="true"
|
305
|
+
BasicRuntimeChecks="0"
|
306
|
+
RuntimeLibrary="0"
|
307
|
+
BufferSecurityCheck="false"
|
308
|
+
EnableFunctionLevelLinking="true"
|
309
|
+
UsePrecompiledHeader="0"
|
310
|
+
AssemblerListingLocation="$(IntDir)\"
|
311
|
+
WarningLevel="3"
|
312
|
+
Detect64BitPortabilityProblems="true"
|
313
|
+
DebugInformationFormat="3"
|
314
|
+
/>
|
315
|
+
<Tool
|
316
|
+
Name="VCManagedResourceCompilerTool"
|
317
|
+
/>
|
318
|
+
<Tool
|
319
|
+
Name="VCResourceCompilerTool"
|
320
|
+
/>
|
321
|
+
<Tool
|
322
|
+
Name="VCPreLinkEventTool"
|
323
|
+
/>
|
324
|
+
<Tool
|
325
|
+
Name="VCLinkerTool"
|
326
|
+
AdditionalDependencies="x86\ZlibDllRelease\zlibwapi.lib"
|
327
|
+
OutputFile="$(OutDir)/miniunz.exe"
|
328
|
+
LinkIncremental="1"
|
329
|
+
GenerateManifest="false"
|
330
|
+
GenerateDebugInformation="true"
|
331
|
+
SubSystem="1"
|
332
|
+
OptimizeReferences="2"
|
333
|
+
EnableCOMDATFolding="2"
|
334
|
+
OptimizeForWindows98="1"
|
335
|
+
TargetMachine="1"
|
336
|
+
/>
|
337
|
+
<Tool
|
338
|
+
Name="VCALinkTool"
|
339
|
+
/>
|
340
|
+
<Tool
|
341
|
+
Name="VCManifestTool"
|
342
|
+
/>
|
343
|
+
<Tool
|
344
|
+
Name="VCXDCMakeTool"
|
345
|
+
/>
|
346
|
+
<Tool
|
347
|
+
Name="VCBscMakeTool"
|
348
|
+
/>
|
349
|
+
<Tool
|
350
|
+
Name="VCFxCopTool"
|
351
|
+
/>
|
352
|
+
<Tool
|
353
|
+
Name="VCAppVerifierTool"
|
354
|
+
/>
|
355
|
+
<Tool
|
356
|
+
Name="VCWebDeploymentTool"
|
357
|
+
/>
|
358
|
+
<Tool
|
359
|
+
Name="VCPostBuildEventTool"
|
360
|
+
/>
|
361
|
+
</Configuration>
|
362
|
+
<Configuration
|
363
|
+
Name="Release|x64"
|
364
|
+
OutputDirectory="x64\MiniUnzip$(ConfigurationName)"
|
365
|
+
IntermediateDirectory="x64\MiniUnzip$(ConfigurationName)\Tmp"
|
366
|
+
ConfigurationType="1"
|
367
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
368
|
+
CharacterSet="2"
|
369
|
+
>
|
370
|
+
<Tool
|
371
|
+
Name="VCPreBuildEventTool"
|
372
|
+
/>
|
373
|
+
<Tool
|
374
|
+
Name="VCCustomBuildTool"
|
375
|
+
/>
|
376
|
+
<Tool
|
377
|
+
Name="VCXMLDataGeneratorTool"
|
378
|
+
/>
|
379
|
+
<Tool
|
380
|
+
Name="VCWebServiceProxyGeneratorTool"
|
381
|
+
/>
|
382
|
+
<Tool
|
383
|
+
Name="VCMIDLTool"
|
384
|
+
TargetEnvironment="3"
|
385
|
+
/>
|
386
|
+
<Tool
|
387
|
+
Name="VCCLCompilerTool"
|
388
|
+
Optimization="2"
|
389
|
+
InlineFunctionExpansion="1"
|
390
|
+
OmitFramePointers="true"
|
391
|
+
AdditionalIncludeDirectories="..\..\..;..\..\minizip"
|
392
|
+
PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;WIN64"
|
393
|
+
StringPooling="true"
|
394
|
+
BasicRuntimeChecks="0"
|
395
|
+
RuntimeLibrary="2"
|
396
|
+
BufferSecurityCheck="false"
|
397
|
+
EnableFunctionLevelLinking="true"
|
398
|
+
UsePrecompiledHeader="0"
|
399
|
+
AssemblerListingLocation="$(IntDir)\"
|
400
|
+
WarningLevel="3"
|
401
|
+
Detect64BitPortabilityProblems="true"
|
402
|
+
DebugInformationFormat="3"
|
403
|
+
/>
|
404
|
+
<Tool
|
405
|
+
Name="VCManagedResourceCompilerTool"
|
406
|
+
/>
|
407
|
+
<Tool
|
408
|
+
Name="VCResourceCompilerTool"
|
409
|
+
/>
|
410
|
+
<Tool
|
411
|
+
Name="VCPreLinkEventTool"
|
412
|
+
/>
|
413
|
+
<Tool
|
414
|
+
Name="VCLinkerTool"
|
415
|
+
AdditionalDependencies="x64\ZlibDllRelease\zlibwapi.lib"
|
416
|
+
OutputFile="$(OutDir)/miniunz.exe"
|
417
|
+
LinkIncremental="1"
|
418
|
+
GenerateManifest="false"
|
419
|
+
GenerateDebugInformation="true"
|
420
|
+
SubSystem="1"
|
421
|
+
OptimizeReferences="2"
|
422
|
+
EnableCOMDATFolding="2"
|
423
|
+
OptimizeForWindows98="1"
|
424
|
+
TargetMachine="17"
|
425
|
+
/>
|
426
|
+
<Tool
|
427
|
+
Name="VCALinkTool"
|
428
|
+
/>
|
429
|
+
<Tool
|
430
|
+
Name="VCManifestTool"
|
431
|
+
/>
|
432
|
+
<Tool
|
433
|
+
Name="VCXDCMakeTool"
|
434
|
+
/>
|
435
|
+
<Tool
|
436
|
+
Name="VCBscMakeTool"
|
437
|
+
/>
|
438
|
+
<Tool
|
439
|
+
Name="VCFxCopTool"
|
440
|
+
/>
|
441
|
+
<Tool
|
442
|
+
Name="VCAppVerifierTool"
|
443
|
+
/>
|
444
|
+
<Tool
|
445
|
+
Name="VCWebDeploymentTool"
|
446
|
+
/>
|
447
|
+
<Tool
|
448
|
+
Name="VCPostBuildEventTool"
|
449
|
+
/>
|
450
|
+
</Configuration>
|
451
|
+
<Configuration
|
452
|
+
Name="Release|Itanium"
|
453
|
+
OutputDirectory="ia64\MiniUnzip$(ConfigurationName)"
|
454
|
+
IntermediateDirectory="ia64\MiniUnzip$(ConfigurationName)\Tmp"
|
455
|
+
ConfigurationType="1"
|
456
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
457
|
+
CharacterSet="2"
|
458
|
+
>
|
459
|
+
<Tool
|
460
|
+
Name="VCPreBuildEventTool"
|
461
|
+
/>
|
462
|
+
<Tool
|
463
|
+
Name="VCCustomBuildTool"
|
464
|
+
/>
|
465
|
+
<Tool
|
466
|
+
Name="VCXMLDataGeneratorTool"
|
467
|
+
/>
|
468
|
+
<Tool
|
469
|
+
Name="VCWebServiceProxyGeneratorTool"
|
470
|
+
/>
|
471
|
+
<Tool
|
472
|
+
Name="VCMIDLTool"
|
473
|
+
TargetEnvironment="2"
|
474
|
+
/>
|
475
|
+
<Tool
|
476
|
+
Name="VCCLCompilerTool"
|
477
|
+
Optimization="2"
|
478
|
+
InlineFunctionExpansion="1"
|
479
|
+
OmitFramePointers="true"
|
480
|
+
AdditionalIncludeDirectories="..\..\..;..\..\minizip"
|
481
|
+
PreprocessorDefinitions="_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;NDEBUG;_CONSOLE;WIN64"
|
482
|
+
StringPooling="true"
|
483
|
+
BasicRuntimeChecks="0"
|
484
|
+
RuntimeLibrary="2"
|
485
|
+
BufferSecurityCheck="false"
|
486
|
+
EnableFunctionLevelLinking="true"
|
487
|
+
UsePrecompiledHeader="0"
|
488
|
+
AssemblerListingLocation="$(IntDir)\"
|
489
|
+
WarningLevel="3"
|
490
|
+
Detect64BitPortabilityProblems="true"
|
491
|
+
DebugInformationFormat="3"
|
492
|
+
/>
|
493
|
+
<Tool
|
494
|
+
Name="VCManagedResourceCompilerTool"
|
495
|
+
/>
|
496
|
+
<Tool
|
497
|
+
Name="VCResourceCompilerTool"
|
498
|
+
/>
|
499
|
+
<Tool
|
500
|
+
Name="VCPreLinkEventTool"
|
501
|
+
/>
|
502
|
+
<Tool
|
503
|
+
Name="VCLinkerTool"
|
504
|
+
AdditionalDependencies="ia64\ZlibDllRelease\zlibwapi.lib"
|
505
|
+
OutputFile="$(OutDir)/miniunz.exe"
|
506
|
+
LinkIncremental="1"
|
507
|
+
GenerateManifest="false"
|
508
|
+
GenerateDebugInformation="true"
|
509
|
+
SubSystem="1"
|
510
|
+
OptimizeReferences="2"
|
511
|
+
EnableCOMDATFolding="2"
|
512
|
+
OptimizeForWindows98="1"
|
513
|
+
TargetMachine="5"
|
514
|
+
/>
|
515
|
+
<Tool
|
516
|
+
Name="VCALinkTool"
|
517
|
+
/>
|
518
|
+
<Tool
|
519
|
+
Name="VCManifestTool"
|
520
|
+
/>
|
521
|
+
<Tool
|
522
|
+
Name="VCXDCMakeTool"
|
523
|
+
/>
|
524
|
+
<Tool
|
525
|
+
Name="VCBscMakeTool"
|
526
|
+
/>
|
527
|
+
<Tool
|
528
|
+
Name="VCFxCopTool"
|
529
|
+
/>
|
530
|
+
<Tool
|
531
|
+
Name="VCAppVerifierTool"
|
532
|
+
/>
|
533
|
+
<Tool
|
534
|
+
Name="VCWebDeploymentTool"
|
535
|
+
/>
|
536
|
+
<Tool
|
537
|
+
Name="VCPostBuildEventTool"
|
538
|
+
/>
|
539
|
+
</Configuration>
|
540
|
+
</Configurations>
|
541
|
+
<References>
|
542
|
+
</References>
|
543
|
+
<Files>
|
544
|
+
<Filter
|
545
|
+
Name="Source Files"
|
546
|
+
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm"
|
547
|
+
>
|
548
|
+
<File
|
549
|
+
RelativePath="..\..\minizip\miniunz.c"
|
550
|
+
>
|
551
|
+
</File>
|
552
|
+
</Filter>
|
553
|
+
<Filter
|
554
|
+
Name="Header Files"
|
555
|
+
Filter="h;hpp;hxx;hm;inl;inc"
|
556
|
+
>
|
557
|
+
</Filter>
|
558
|
+
<Filter
|
559
|
+
Name="Resource Files"
|
560
|
+
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
|
561
|
+
>
|
562
|
+
</Filter>
|
563
|
+
</Files>
|
564
|
+
<Globals>
|
565
|
+
</Globals>
|
566
|
+
</VisualStudioProject>
|