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,32 @@
|
|
1
|
+
#include <windows.h>
|
2
|
+
|
3
|
+
#define IDR_VERSION1 1
|
4
|
+
IDR_VERSION1 VERSIONINFO MOVEABLE IMPURE LOADONCALL DISCARDABLE
|
5
|
+
FILEVERSION 1,2,3,0
|
6
|
+
PRODUCTVERSION 1,2,3,0
|
7
|
+
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
8
|
+
FILEFLAGS 0
|
9
|
+
FILEOS VOS_DOS_WINDOWS32
|
10
|
+
FILETYPE VFT_DLL
|
11
|
+
FILESUBTYPE 0 // not used
|
12
|
+
BEGIN
|
13
|
+
BLOCK "StringFileInfo"
|
14
|
+
BEGIN
|
15
|
+
BLOCK "040904E4"
|
16
|
+
//language ID = U.S. English, char set = Windows, Multilingual
|
17
|
+
|
18
|
+
BEGIN
|
19
|
+
VALUE "FileDescription", "zlib data compression library\0"
|
20
|
+
VALUE "FileVersion", "1.2.3.0\0"
|
21
|
+
VALUE "InternalName", "zlib\0"
|
22
|
+
VALUE "OriginalFilename", "zlib.dll\0"
|
23
|
+
VALUE "ProductName", "ZLib.DLL\0"
|
24
|
+
VALUE "Comments","DLL support by Alessandro Iacopetti & Gilles Vollant\0"
|
25
|
+
VALUE "LegalCopyright", "(C) 1995-2003 Jean-loup Gailly & Mark Adler\0"
|
26
|
+
END
|
27
|
+
END
|
28
|
+
BLOCK "VarFileInfo"
|
29
|
+
BEGIN
|
30
|
+
VALUE "Translation", 0x0409, 1252
|
31
|
+
END
|
32
|
+
END
|
@@ -0,0 +1,870 @@
|
|
1
|
+
<?xml version="1.0" encoding="Windows-1252"?>
|
2
|
+
<VisualStudioProject
|
3
|
+
ProjectType="Visual C++"
|
4
|
+
Version="8,00"
|
5
|
+
Name="zlibstat"
|
6
|
+
ProjectGUID="{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}"
|
7
|
+
>
|
8
|
+
<Platforms>
|
9
|
+
<Platform
|
10
|
+
Name="Win32"
|
11
|
+
/>
|
12
|
+
<Platform
|
13
|
+
Name="x64"
|
14
|
+
/>
|
15
|
+
<Platform
|
16
|
+
Name="Itanium"
|
17
|
+
/>
|
18
|
+
</Platforms>
|
19
|
+
<ToolFiles>
|
20
|
+
</ToolFiles>
|
21
|
+
<Configurations>
|
22
|
+
<Configuration
|
23
|
+
Name="Debug|Win32"
|
24
|
+
OutputDirectory="x86\ZlibStat$(ConfigurationName)"
|
25
|
+
IntermediateDirectory="x86\ZlibStat$(ConfigurationName)\Tmp"
|
26
|
+
ConfigurationType="4"
|
27
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
28
|
+
UseOfMFC="0"
|
29
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
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="..\..\..;..\..\masmx86"
|
50
|
+
PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE"
|
51
|
+
ExceptionHandling="0"
|
52
|
+
RuntimeLibrary="1"
|
53
|
+
BufferSecurityCheck="false"
|
54
|
+
PrecompiledHeaderFile="$(IntDir)/zlibstat.pch"
|
55
|
+
AssemblerListingLocation="$(IntDir)\"
|
56
|
+
ObjectFile="$(IntDir)\"
|
57
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
58
|
+
WarningLevel="3"
|
59
|
+
SuppressStartupBanner="true"
|
60
|
+
Detect64BitPortabilityProblems="true"
|
61
|
+
DebugInformationFormat="1"
|
62
|
+
/>
|
63
|
+
<Tool
|
64
|
+
Name="VCManagedResourceCompilerTool"
|
65
|
+
/>
|
66
|
+
<Tool
|
67
|
+
Name="VCResourceCompilerTool"
|
68
|
+
Culture="1036"
|
69
|
+
/>
|
70
|
+
<Tool
|
71
|
+
Name="VCPreLinkEventTool"
|
72
|
+
/>
|
73
|
+
<Tool
|
74
|
+
Name="VCLibrarianTool"
|
75
|
+
AdditionalOptions="/MACHINE:X86 /NODEFAULTLIB"
|
76
|
+
OutputFile="$(OutDir)\zlibstat.lib"
|
77
|
+
SuppressStartupBanner="true"
|
78
|
+
/>
|
79
|
+
<Tool
|
80
|
+
Name="VCALinkTool"
|
81
|
+
/>
|
82
|
+
<Tool
|
83
|
+
Name="VCXDCMakeTool"
|
84
|
+
/>
|
85
|
+
<Tool
|
86
|
+
Name="VCBscMakeTool"
|
87
|
+
/>
|
88
|
+
<Tool
|
89
|
+
Name="VCFxCopTool"
|
90
|
+
/>
|
91
|
+
<Tool
|
92
|
+
Name="VCPostBuildEventTool"
|
93
|
+
/>
|
94
|
+
</Configuration>
|
95
|
+
<Configuration
|
96
|
+
Name="Debug|x64"
|
97
|
+
OutputDirectory="x64\ZlibStat$(ConfigurationName)"
|
98
|
+
IntermediateDirectory="x64\ZlibStat$(ConfigurationName)\Tmp"
|
99
|
+
ConfigurationType="4"
|
100
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
101
|
+
UseOfMFC="0"
|
102
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
103
|
+
>
|
104
|
+
<Tool
|
105
|
+
Name="VCPreBuildEventTool"
|
106
|
+
/>
|
107
|
+
<Tool
|
108
|
+
Name="VCCustomBuildTool"
|
109
|
+
/>
|
110
|
+
<Tool
|
111
|
+
Name="VCXMLDataGeneratorTool"
|
112
|
+
/>
|
113
|
+
<Tool
|
114
|
+
Name="VCWebServiceProxyGeneratorTool"
|
115
|
+
/>
|
116
|
+
<Tool
|
117
|
+
Name="VCMIDLTool"
|
118
|
+
TargetEnvironment="3"
|
119
|
+
/>
|
120
|
+
<Tool
|
121
|
+
Name="VCCLCompilerTool"
|
122
|
+
Optimization="0"
|
123
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
124
|
+
PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64"
|
125
|
+
ExceptionHandling="0"
|
126
|
+
RuntimeLibrary="3"
|
127
|
+
BufferSecurityCheck="false"
|
128
|
+
PrecompiledHeaderFile="$(IntDir)/zlibstat.pch"
|
129
|
+
AssemblerListingLocation="$(IntDir)\"
|
130
|
+
ObjectFile="$(IntDir)\"
|
131
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
132
|
+
WarningLevel="3"
|
133
|
+
SuppressStartupBanner="true"
|
134
|
+
Detect64BitPortabilityProblems="true"
|
135
|
+
DebugInformationFormat="1"
|
136
|
+
/>
|
137
|
+
<Tool
|
138
|
+
Name="VCManagedResourceCompilerTool"
|
139
|
+
/>
|
140
|
+
<Tool
|
141
|
+
Name="VCResourceCompilerTool"
|
142
|
+
Culture="1036"
|
143
|
+
/>
|
144
|
+
<Tool
|
145
|
+
Name="VCPreLinkEventTool"
|
146
|
+
/>
|
147
|
+
<Tool
|
148
|
+
Name="VCLibrarianTool"
|
149
|
+
AdditionalOptions="/MACHINE:AMD64 /NODEFAULTLIB"
|
150
|
+
OutputFile="$(OutDir)\zlibstat.lib"
|
151
|
+
SuppressStartupBanner="true"
|
152
|
+
/>
|
153
|
+
<Tool
|
154
|
+
Name="VCALinkTool"
|
155
|
+
/>
|
156
|
+
<Tool
|
157
|
+
Name="VCXDCMakeTool"
|
158
|
+
/>
|
159
|
+
<Tool
|
160
|
+
Name="VCBscMakeTool"
|
161
|
+
/>
|
162
|
+
<Tool
|
163
|
+
Name="VCFxCopTool"
|
164
|
+
/>
|
165
|
+
<Tool
|
166
|
+
Name="VCPostBuildEventTool"
|
167
|
+
/>
|
168
|
+
</Configuration>
|
169
|
+
<Configuration
|
170
|
+
Name="Debug|Itanium"
|
171
|
+
OutputDirectory="ia64\ZlibStat$(ConfigurationName)"
|
172
|
+
IntermediateDirectory="ia64\ZlibStat$(ConfigurationName)\Tmp"
|
173
|
+
ConfigurationType="4"
|
174
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
175
|
+
UseOfMFC="0"
|
176
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
177
|
+
>
|
178
|
+
<Tool
|
179
|
+
Name="VCPreBuildEventTool"
|
180
|
+
/>
|
181
|
+
<Tool
|
182
|
+
Name="VCCustomBuildTool"
|
183
|
+
/>
|
184
|
+
<Tool
|
185
|
+
Name="VCXMLDataGeneratorTool"
|
186
|
+
/>
|
187
|
+
<Tool
|
188
|
+
Name="VCWebServiceProxyGeneratorTool"
|
189
|
+
/>
|
190
|
+
<Tool
|
191
|
+
Name="VCMIDLTool"
|
192
|
+
TargetEnvironment="2"
|
193
|
+
/>
|
194
|
+
<Tool
|
195
|
+
Name="VCCLCompilerTool"
|
196
|
+
Optimization="0"
|
197
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
198
|
+
PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64"
|
199
|
+
ExceptionHandling="0"
|
200
|
+
RuntimeLibrary="3"
|
201
|
+
BufferSecurityCheck="false"
|
202
|
+
PrecompiledHeaderFile="$(IntDir)/zlibstat.pch"
|
203
|
+
AssemblerListingLocation="$(IntDir)\"
|
204
|
+
ObjectFile="$(IntDir)\"
|
205
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
206
|
+
WarningLevel="3"
|
207
|
+
SuppressStartupBanner="true"
|
208
|
+
Detect64BitPortabilityProblems="true"
|
209
|
+
DebugInformationFormat="1"
|
210
|
+
/>
|
211
|
+
<Tool
|
212
|
+
Name="VCManagedResourceCompilerTool"
|
213
|
+
/>
|
214
|
+
<Tool
|
215
|
+
Name="VCResourceCompilerTool"
|
216
|
+
Culture="1036"
|
217
|
+
/>
|
218
|
+
<Tool
|
219
|
+
Name="VCPreLinkEventTool"
|
220
|
+
/>
|
221
|
+
<Tool
|
222
|
+
Name="VCLibrarianTool"
|
223
|
+
AdditionalOptions="/MACHINE:IA64 /NODEFAULTLIB"
|
224
|
+
OutputFile="$(OutDir)\zlibstat.lib"
|
225
|
+
SuppressStartupBanner="true"
|
226
|
+
/>
|
227
|
+
<Tool
|
228
|
+
Name="VCALinkTool"
|
229
|
+
/>
|
230
|
+
<Tool
|
231
|
+
Name="VCXDCMakeTool"
|
232
|
+
/>
|
233
|
+
<Tool
|
234
|
+
Name="VCBscMakeTool"
|
235
|
+
/>
|
236
|
+
<Tool
|
237
|
+
Name="VCFxCopTool"
|
238
|
+
/>
|
239
|
+
<Tool
|
240
|
+
Name="VCPostBuildEventTool"
|
241
|
+
/>
|
242
|
+
</Configuration>
|
243
|
+
<Configuration
|
244
|
+
Name="Release|Win32"
|
245
|
+
OutputDirectory="x86\ZlibStat$(ConfigurationName)"
|
246
|
+
IntermediateDirectory="x86\ZlibStat$(ConfigurationName)\Tmp"
|
247
|
+
ConfigurationType="4"
|
248
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
249
|
+
UseOfMFC="0"
|
250
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
251
|
+
>
|
252
|
+
<Tool
|
253
|
+
Name="VCPreBuildEventTool"
|
254
|
+
/>
|
255
|
+
<Tool
|
256
|
+
Name="VCCustomBuildTool"
|
257
|
+
/>
|
258
|
+
<Tool
|
259
|
+
Name="VCXMLDataGeneratorTool"
|
260
|
+
/>
|
261
|
+
<Tool
|
262
|
+
Name="VCWebServiceProxyGeneratorTool"
|
263
|
+
/>
|
264
|
+
<Tool
|
265
|
+
Name="VCMIDLTool"
|
266
|
+
/>
|
267
|
+
<Tool
|
268
|
+
Name="VCCLCompilerTool"
|
269
|
+
InlineFunctionExpansion="1"
|
270
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
271
|
+
PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ASMV;ASMINF"
|
272
|
+
StringPooling="true"
|
273
|
+
ExceptionHandling="0"
|
274
|
+
RuntimeLibrary="0"
|
275
|
+
BufferSecurityCheck="false"
|
276
|
+
EnableFunctionLevelLinking="true"
|
277
|
+
PrecompiledHeaderFile="$(IntDir)/zlibstat.pch"
|
278
|
+
AssemblerListingLocation="$(IntDir)\"
|
279
|
+
ObjectFile="$(IntDir)\"
|
280
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
281
|
+
WarningLevel="3"
|
282
|
+
SuppressStartupBanner="true"
|
283
|
+
/>
|
284
|
+
<Tool
|
285
|
+
Name="VCManagedResourceCompilerTool"
|
286
|
+
/>
|
287
|
+
<Tool
|
288
|
+
Name="VCResourceCompilerTool"
|
289
|
+
Culture="1036"
|
290
|
+
/>
|
291
|
+
<Tool
|
292
|
+
Name="VCPreLinkEventTool"
|
293
|
+
/>
|
294
|
+
<Tool
|
295
|
+
Name="VCLibrarianTool"
|
296
|
+
AdditionalOptions="/MACHINE:X86 /NODEFAULTLIB"
|
297
|
+
AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj "
|
298
|
+
OutputFile="$(OutDir)\zlibstat.lib"
|
299
|
+
SuppressStartupBanner="true"
|
300
|
+
/>
|
301
|
+
<Tool
|
302
|
+
Name="VCALinkTool"
|
303
|
+
/>
|
304
|
+
<Tool
|
305
|
+
Name="VCXDCMakeTool"
|
306
|
+
/>
|
307
|
+
<Tool
|
308
|
+
Name="VCBscMakeTool"
|
309
|
+
/>
|
310
|
+
<Tool
|
311
|
+
Name="VCFxCopTool"
|
312
|
+
/>
|
313
|
+
<Tool
|
314
|
+
Name="VCPostBuildEventTool"
|
315
|
+
/>
|
316
|
+
</Configuration>
|
317
|
+
<Configuration
|
318
|
+
Name="Release|x64"
|
319
|
+
OutputDirectory="x64\ZlibStat$(ConfigurationName)"
|
320
|
+
IntermediateDirectory="x64\ZlibStat$(ConfigurationName)\Tmp"
|
321
|
+
ConfigurationType="4"
|
322
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
323
|
+
UseOfMFC="0"
|
324
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
325
|
+
>
|
326
|
+
<Tool
|
327
|
+
Name="VCPreBuildEventTool"
|
328
|
+
/>
|
329
|
+
<Tool
|
330
|
+
Name="VCCustomBuildTool"
|
331
|
+
/>
|
332
|
+
<Tool
|
333
|
+
Name="VCXMLDataGeneratorTool"
|
334
|
+
/>
|
335
|
+
<Tool
|
336
|
+
Name="VCWebServiceProxyGeneratorTool"
|
337
|
+
/>
|
338
|
+
<Tool
|
339
|
+
Name="VCMIDLTool"
|
340
|
+
TargetEnvironment="3"
|
341
|
+
/>
|
342
|
+
<Tool
|
343
|
+
Name="VCCLCompilerTool"
|
344
|
+
InlineFunctionExpansion="1"
|
345
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
346
|
+
PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;ASMV;ASMINF;WIN64"
|
347
|
+
StringPooling="true"
|
348
|
+
ExceptionHandling="0"
|
349
|
+
RuntimeLibrary="2"
|
350
|
+
BufferSecurityCheck="false"
|
351
|
+
EnableFunctionLevelLinking="true"
|
352
|
+
PrecompiledHeaderFile="$(IntDir)/zlibstat.pch"
|
353
|
+
AssemblerListingLocation="$(IntDir)\"
|
354
|
+
ObjectFile="$(IntDir)\"
|
355
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
356
|
+
WarningLevel="3"
|
357
|
+
SuppressStartupBanner="true"
|
358
|
+
/>
|
359
|
+
<Tool
|
360
|
+
Name="VCManagedResourceCompilerTool"
|
361
|
+
/>
|
362
|
+
<Tool
|
363
|
+
Name="VCResourceCompilerTool"
|
364
|
+
Culture="1036"
|
365
|
+
/>
|
366
|
+
<Tool
|
367
|
+
Name="VCPreLinkEventTool"
|
368
|
+
/>
|
369
|
+
<Tool
|
370
|
+
Name="VCLibrarianTool"
|
371
|
+
AdditionalOptions="/MACHINE:AMD64 /NODEFAULTLIB"
|
372
|
+
AdditionalDependencies="..\..\masmx64\gvmat64.obj ..\..\masmx64\inffasx64.obj "
|
373
|
+
OutputFile="$(OutDir)\zlibstat.lib"
|
374
|
+
SuppressStartupBanner="true"
|
375
|
+
/>
|
376
|
+
<Tool
|
377
|
+
Name="VCALinkTool"
|
378
|
+
/>
|
379
|
+
<Tool
|
380
|
+
Name="VCXDCMakeTool"
|
381
|
+
/>
|
382
|
+
<Tool
|
383
|
+
Name="VCBscMakeTool"
|
384
|
+
/>
|
385
|
+
<Tool
|
386
|
+
Name="VCFxCopTool"
|
387
|
+
/>
|
388
|
+
<Tool
|
389
|
+
Name="VCPostBuildEventTool"
|
390
|
+
/>
|
391
|
+
</Configuration>
|
392
|
+
<Configuration
|
393
|
+
Name="Release|Itanium"
|
394
|
+
OutputDirectory="ia64\ZlibStat$(ConfigurationName)"
|
395
|
+
IntermediateDirectory="ia64\ZlibStat$(ConfigurationName)\Tmp"
|
396
|
+
ConfigurationType="4"
|
397
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
398
|
+
UseOfMFC="0"
|
399
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
400
|
+
>
|
401
|
+
<Tool
|
402
|
+
Name="VCPreBuildEventTool"
|
403
|
+
/>
|
404
|
+
<Tool
|
405
|
+
Name="VCCustomBuildTool"
|
406
|
+
/>
|
407
|
+
<Tool
|
408
|
+
Name="VCXMLDataGeneratorTool"
|
409
|
+
/>
|
410
|
+
<Tool
|
411
|
+
Name="VCWebServiceProxyGeneratorTool"
|
412
|
+
/>
|
413
|
+
<Tool
|
414
|
+
Name="VCMIDLTool"
|
415
|
+
TargetEnvironment="2"
|
416
|
+
/>
|
417
|
+
<Tool
|
418
|
+
Name="VCCLCompilerTool"
|
419
|
+
InlineFunctionExpansion="1"
|
420
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
421
|
+
PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64"
|
422
|
+
StringPooling="true"
|
423
|
+
ExceptionHandling="0"
|
424
|
+
RuntimeLibrary="2"
|
425
|
+
BufferSecurityCheck="false"
|
426
|
+
EnableFunctionLevelLinking="true"
|
427
|
+
PrecompiledHeaderFile="$(IntDir)/zlibstat.pch"
|
428
|
+
AssemblerListingLocation="$(IntDir)\"
|
429
|
+
ObjectFile="$(IntDir)\"
|
430
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
431
|
+
WarningLevel="3"
|
432
|
+
SuppressStartupBanner="true"
|
433
|
+
/>
|
434
|
+
<Tool
|
435
|
+
Name="VCManagedResourceCompilerTool"
|
436
|
+
/>
|
437
|
+
<Tool
|
438
|
+
Name="VCResourceCompilerTool"
|
439
|
+
Culture="1036"
|
440
|
+
/>
|
441
|
+
<Tool
|
442
|
+
Name="VCPreLinkEventTool"
|
443
|
+
/>
|
444
|
+
<Tool
|
445
|
+
Name="VCLibrarianTool"
|
446
|
+
AdditionalOptions="/MACHINE:IA64 /NODEFAULTLIB"
|
447
|
+
OutputFile="$(OutDir)\zlibstat.lib"
|
448
|
+
SuppressStartupBanner="true"
|
449
|
+
/>
|
450
|
+
<Tool
|
451
|
+
Name="VCALinkTool"
|
452
|
+
/>
|
453
|
+
<Tool
|
454
|
+
Name="VCXDCMakeTool"
|
455
|
+
/>
|
456
|
+
<Tool
|
457
|
+
Name="VCBscMakeTool"
|
458
|
+
/>
|
459
|
+
<Tool
|
460
|
+
Name="VCFxCopTool"
|
461
|
+
/>
|
462
|
+
<Tool
|
463
|
+
Name="VCPostBuildEventTool"
|
464
|
+
/>
|
465
|
+
</Configuration>
|
466
|
+
<Configuration
|
467
|
+
Name="ReleaseWithoutAsm|Win32"
|
468
|
+
OutputDirectory="x86\ZlibStat$(ConfigurationName)"
|
469
|
+
IntermediateDirectory="x86\ZlibStat$(ConfigurationName)\Tmp"
|
470
|
+
ConfigurationType="4"
|
471
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
472
|
+
UseOfMFC="0"
|
473
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
474
|
+
>
|
475
|
+
<Tool
|
476
|
+
Name="VCPreBuildEventTool"
|
477
|
+
/>
|
478
|
+
<Tool
|
479
|
+
Name="VCCustomBuildTool"
|
480
|
+
/>
|
481
|
+
<Tool
|
482
|
+
Name="VCXMLDataGeneratorTool"
|
483
|
+
/>
|
484
|
+
<Tool
|
485
|
+
Name="VCWebServiceProxyGeneratorTool"
|
486
|
+
/>
|
487
|
+
<Tool
|
488
|
+
Name="VCMIDLTool"
|
489
|
+
/>
|
490
|
+
<Tool
|
491
|
+
Name="VCCLCompilerTool"
|
492
|
+
InlineFunctionExpansion="1"
|
493
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
494
|
+
PreprocessorDefinitions="WIN32;ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE"
|
495
|
+
StringPooling="true"
|
496
|
+
ExceptionHandling="0"
|
497
|
+
RuntimeLibrary="0"
|
498
|
+
BufferSecurityCheck="false"
|
499
|
+
EnableFunctionLevelLinking="true"
|
500
|
+
PrecompiledHeaderFile="$(IntDir)/zlibstat.pch"
|
501
|
+
AssemblerListingLocation="$(IntDir)\"
|
502
|
+
ObjectFile="$(IntDir)\"
|
503
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
504
|
+
WarningLevel="3"
|
505
|
+
SuppressStartupBanner="true"
|
506
|
+
/>
|
507
|
+
<Tool
|
508
|
+
Name="VCManagedResourceCompilerTool"
|
509
|
+
/>
|
510
|
+
<Tool
|
511
|
+
Name="VCResourceCompilerTool"
|
512
|
+
Culture="1036"
|
513
|
+
/>
|
514
|
+
<Tool
|
515
|
+
Name="VCPreLinkEventTool"
|
516
|
+
/>
|
517
|
+
<Tool
|
518
|
+
Name="VCLibrarianTool"
|
519
|
+
AdditionalOptions="/MACHINE:X86 /NODEFAULTLIB"
|
520
|
+
OutputFile="$(OutDir)\zlibstat.lib"
|
521
|
+
SuppressStartupBanner="true"
|
522
|
+
/>
|
523
|
+
<Tool
|
524
|
+
Name="VCALinkTool"
|
525
|
+
/>
|
526
|
+
<Tool
|
527
|
+
Name="VCXDCMakeTool"
|
528
|
+
/>
|
529
|
+
<Tool
|
530
|
+
Name="VCBscMakeTool"
|
531
|
+
/>
|
532
|
+
<Tool
|
533
|
+
Name="VCFxCopTool"
|
534
|
+
/>
|
535
|
+
<Tool
|
536
|
+
Name="VCPostBuildEventTool"
|
537
|
+
/>
|
538
|
+
</Configuration>
|
539
|
+
<Configuration
|
540
|
+
Name="ReleaseWithoutAsm|x64"
|
541
|
+
OutputDirectory="x64\ZlibStat$(ConfigurationName)"
|
542
|
+
IntermediateDirectory="x64\ZlibStat$(ConfigurationName)\Tmp"
|
543
|
+
ConfigurationType="4"
|
544
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
545
|
+
UseOfMFC="0"
|
546
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
547
|
+
>
|
548
|
+
<Tool
|
549
|
+
Name="VCPreBuildEventTool"
|
550
|
+
/>
|
551
|
+
<Tool
|
552
|
+
Name="VCCustomBuildTool"
|
553
|
+
/>
|
554
|
+
<Tool
|
555
|
+
Name="VCXMLDataGeneratorTool"
|
556
|
+
/>
|
557
|
+
<Tool
|
558
|
+
Name="VCWebServiceProxyGeneratorTool"
|
559
|
+
/>
|
560
|
+
<Tool
|
561
|
+
Name="VCMIDLTool"
|
562
|
+
TargetEnvironment="3"
|
563
|
+
/>
|
564
|
+
<Tool
|
565
|
+
Name="VCCLCompilerTool"
|
566
|
+
InlineFunctionExpansion="1"
|
567
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
568
|
+
PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64"
|
569
|
+
StringPooling="true"
|
570
|
+
ExceptionHandling="0"
|
571
|
+
RuntimeLibrary="2"
|
572
|
+
BufferSecurityCheck="false"
|
573
|
+
EnableFunctionLevelLinking="true"
|
574
|
+
PrecompiledHeaderFile="$(IntDir)/zlibstat.pch"
|
575
|
+
AssemblerListingLocation="$(IntDir)\"
|
576
|
+
ObjectFile="$(IntDir)\"
|
577
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
578
|
+
WarningLevel="3"
|
579
|
+
SuppressStartupBanner="true"
|
580
|
+
/>
|
581
|
+
<Tool
|
582
|
+
Name="VCManagedResourceCompilerTool"
|
583
|
+
/>
|
584
|
+
<Tool
|
585
|
+
Name="VCResourceCompilerTool"
|
586
|
+
Culture="1036"
|
587
|
+
/>
|
588
|
+
<Tool
|
589
|
+
Name="VCPreLinkEventTool"
|
590
|
+
/>
|
591
|
+
<Tool
|
592
|
+
Name="VCLibrarianTool"
|
593
|
+
AdditionalOptions="/MACHINE:AMD64 /NODEFAULTLIB"
|
594
|
+
OutputFile="$(OutDir)\zlibstat.lib"
|
595
|
+
SuppressStartupBanner="true"
|
596
|
+
/>
|
597
|
+
<Tool
|
598
|
+
Name="VCALinkTool"
|
599
|
+
/>
|
600
|
+
<Tool
|
601
|
+
Name="VCXDCMakeTool"
|
602
|
+
/>
|
603
|
+
<Tool
|
604
|
+
Name="VCBscMakeTool"
|
605
|
+
/>
|
606
|
+
<Tool
|
607
|
+
Name="VCFxCopTool"
|
608
|
+
/>
|
609
|
+
<Tool
|
610
|
+
Name="VCPostBuildEventTool"
|
611
|
+
/>
|
612
|
+
</Configuration>
|
613
|
+
<Configuration
|
614
|
+
Name="ReleaseWithoutAsm|Itanium"
|
615
|
+
OutputDirectory="ia64\ZlibStat$(ConfigurationName)"
|
616
|
+
IntermediateDirectory="ia64\ZlibStat$(ConfigurationName)\Tmp"
|
617
|
+
ConfigurationType="4"
|
618
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
619
|
+
UseOfMFC="0"
|
620
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
621
|
+
>
|
622
|
+
<Tool
|
623
|
+
Name="VCPreBuildEventTool"
|
624
|
+
/>
|
625
|
+
<Tool
|
626
|
+
Name="VCCustomBuildTool"
|
627
|
+
/>
|
628
|
+
<Tool
|
629
|
+
Name="VCXMLDataGeneratorTool"
|
630
|
+
/>
|
631
|
+
<Tool
|
632
|
+
Name="VCWebServiceProxyGeneratorTool"
|
633
|
+
/>
|
634
|
+
<Tool
|
635
|
+
Name="VCMIDLTool"
|
636
|
+
TargetEnvironment="2"
|
637
|
+
/>
|
638
|
+
<Tool
|
639
|
+
Name="VCCLCompilerTool"
|
640
|
+
InlineFunctionExpansion="1"
|
641
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
642
|
+
PreprocessorDefinitions="ZLIB_WINAPI;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;WIN64"
|
643
|
+
StringPooling="true"
|
644
|
+
ExceptionHandling="0"
|
645
|
+
RuntimeLibrary="2"
|
646
|
+
BufferSecurityCheck="false"
|
647
|
+
EnableFunctionLevelLinking="true"
|
648
|
+
PrecompiledHeaderFile="$(IntDir)/zlibstat.pch"
|
649
|
+
AssemblerListingLocation="$(IntDir)\"
|
650
|
+
ObjectFile="$(IntDir)\"
|
651
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
652
|
+
WarningLevel="3"
|
653
|
+
SuppressStartupBanner="true"
|
654
|
+
/>
|
655
|
+
<Tool
|
656
|
+
Name="VCManagedResourceCompilerTool"
|
657
|
+
/>
|
658
|
+
<Tool
|
659
|
+
Name="VCResourceCompilerTool"
|
660
|
+
Culture="1036"
|
661
|
+
/>
|
662
|
+
<Tool
|
663
|
+
Name="VCPreLinkEventTool"
|
664
|
+
/>
|
665
|
+
<Tool
|
666
|
+
Name="VCLibrarianTool"
|
667
|
+
AdditionalOptions="/MACHINE:IA64 /NODEFAULTLIB"
|
668
|
+
OutputFile="$(OutDir)\zlibstat.lib"
|
669
|
+
SuppressStartupBanner="true"
|
670
|
+
/>
|
671
|
+
<Tool
|
672
|
+
Name="VCALinkTool"
|
673
|
+
/>
|
674
|
+
<Tool
|
675
|
+
Name="VCXDCMakeTool"
|
676
|
+
/>
|
677
|
+
<Tool
|
678
|
+
Name="VCBscMakeTool"
|
679
|
+
/>
|
680
|
+
<Tool
|
681
|
+
Name="VCFxCopTool"
|
682
|
+
/>
|
683
|
+
<Tool
|
684
|
+
Name="VCPostBuildEventTool"
|
685
|
+
/>
|
686
|
+
</Configuration>
|
687
|
+
</Configurations>
|
688
|
+
<References>
|
689
|
+
</References>
|
690
|
+
<Files>
|
691
|
+
<Filter
|
692
|
+
Name="Source Files"
|
693
|
+
>
|
694
|
+
<File
|
695
|
+
RelativePath="..\..\..\adler32.c"
|
696
|
+
>
|
697
|
+
</File>
|
698
|
+
<File
|
699
|
+
RelativePath="..\..\..\compress.c"
|
700
|
+
>
|
701
|
+
</File>
|
702
|
+
<File
|
703
|
+
RelativePath="..\..\..\crc32.c"
|
704
|
+
>
|
705
|
+
</File>
|
706
|
+
<File
|
707
|
+
RelativePath="..\..\..\deflate.c"
|
708
|
+
>
|
709
|
+
</File>
|
710
|
+
<File
|
711
|
+
RelativePath="..\..\masmx86\gvmat32c.c"
|
712
|
+
>
|
713
|
+
<FileConfiguration
|
714
|
+
Name="Debug|x64"
|
715
|
+
ExcludedFromBuild="true"
|
716
|
+
>
|
717
|
+
<Tool
|
718
|
+
Name="VCCLCompilerTool"
|
719
|
+
/>
|
720
|
+
</FileConfiguration>
|
721
|
+
<FileConfiguration
|
722
|
+
Name="Debug|Itanium"
|
723
|
+
ExcludedFromBuild="true"
|
724
|
+
>
|
725
|
+
<Tool
|
726
|
+
Name="VCCLCompilerTool"
|
727
|
+
/>
|
728
|
+
</FileConfiguration>
|
729
|
+
<FileConfiguration
|
730
|
+
Name="Release|x64"
|
731
|
+
ExcludedFromBuild="true"
|
732
|
+
>
|
733
|
+
<Tool
|
734
|
+
Name="VCCLCompilerTool"
|
735
|
+
/>
|
736
|
+
</FileConfiguration>
|
737
|
+
<FileConfiguration
|
738
|
+
Name="Release|Itanium"
|
739
|
+
ExcludedFromBuild="true"
|
740
|
+
>
|
741
|
+
<Tool
|
742
|
+
Name="VCCLCompilerTool"
|
743
|
+
/>
|
744
|
+
</FileConfiguration>
|
745
|
+
<FileConfiguration
|
746
|
+
Name="ReleaseWithoutAsm|x64"
|
747
|
+
ExcludedFromBuild="true"
|
748
|
+
>
|
749
|
+
<Tool
|
750
|
+
Name="VCCLCompilerTool"
|
751
|
+
/>
|
752
|
+
</FileConfiguration>
|
753
|
+
<FileConfiguration
|
754
|
+
Name="ReleaseWithoutAsm|Itanium"
|
755
|
+
ExcludedFromBuild="true"
|
756
|
+
>
|
757
|
+
<Tool
|
758
|
+
Name="VCCLCompilerTool"
|
759
|
+
/>
|
760
|
+
</FileConfiguration>
|
761
|
+
</File>
|
762
|
+
<File
|
763
|
+
RelativePath="..\..\..\gzio.c"
|
764
|
+
>
|
765
|
+
</File>
|
766
|
+
<File
|
767
|
+
RelativePath="..\..\..\infback.c"
|
768
|
+
>
|
769
|
+
</File>
|
770
|
+
<File
|
771
|
+
RelativePath="..\..\masmx64\inffas8664.c"
|
772
|
+
>
|
773
|
+
<FileConfiguration
|
774
|
+
Name="Debug|Win32"
|
775
|
+
ExcludedFromBuild="true"
|
776
|
+
>
|
777
|
+
<Tool
|
778
|
+
Name="VCCLCompilerTool"
|
779
|
+
/>
|
780
|
+
</FileConfiguration>
|
781
|
+
<FileConfiguration
|
782
|
+
Name="Debug|Itanium"
|
783
|
+
ExcludedFromBuild="true"
|
784
|
+
>
|
785
|
+
<Tool
|
786
|
+
Name="VCCLCompilerTool"
|
787
|
+
/>
|
788
|
+
</FileConfiguration>
|
789
|
+
<FileConfiguration
|
790
|
+
Name="Release|Win32"
|
791
|
+
ExcludedFromBuild="true"
|
792
|
+
>
|
793
|
+
<Tool
|
794
|
+
Name="VCCLCompilerTool"
|
795
|
+
/>
|
796
|
+
</FileConfiguration>
|
797
|
+
<FileConfiguration
|
798
|
+
Name="Release|Itanium"
|
799
|
+
ExcludedFromBuild="true"
|
800
|
+
>
|
801
|
+
<Tool
|
802
|
+
Name="VCCLCompilerTool"
|
803
|
+
/>
|
804
|
+
</FileConfiguration>
|
805
|
+
<FileConfiguration
|
806
|
+
Name="ReleaseWithoutAsm|Win32"
|
807
|
+
ExcludedFromBuild="true"
|
808
|
+
>
|
809
|
+
<Tool
|
810
|
+
Name="VCCLCompilerTool"
|
811
|
+
/>
|
812
|
+
</FileConfiguration>
|
813
|
+
<FileConfiguration
|
814
|
+
Name="ReleaseWithoutAsm|Itanium"
|
815
|
+
ExcludedFromBuild="true"
|
816
|
+
>
|
817
|
+
<Tool
|
818
|
+
Name="VCCLCompilerTool"
|
819
|
+
/>
|
820
|
+
</FileConfiguration>
|
821
|
+
</File>
|
822
|
+
<File
|
823
|
+
RelativePath="..\..\..\inffast.c"
|
824
|
+
>
|
825
|
+
</File>
|
826
|
+
<File
|
827
|
+
RelativePath="..\..\..\inflate.c"
|
828
|
+
>
|
829
|
+
</File>
|
830
|
+
<File
|
831
|
+
RelativePath="..\..\..\inftrees.c"
|
832
|
+
>
|
833
|
+
</File>
|
834
|
+
<File
|
835
|
+
RelativePath="..\..\minizip\ioapi.c"
|
836
|
+
>
|
837
|
+
</File>
|
838
|
+
<File
|
839
|
+
RelativePath="..\..\..\trees.c"
|
840
|
+
>
|
841
|
+
</File>
|
842
|
+
<File
|
843
|
+
RelativePath="..\..\..\uncompr.c"
|
844
|
+
>
|
845
|
+
</File>
|
846
|
+
<File
|
847
|
+
RelativePath="..\..\minizip\unzip.c"
|
848
|
+
>
|
849
|
+
</File>
|
850
|
+
<File
|
851
|
+
RelativePath="..\..\minizip\zip.c"
|
852
|
+
>
|
853
|
+
</File>
|
854
|
+
<File
|
855
|
+
RelativePath=".\zlib.rc"
|
856
|
+
>
|
857
|
+
</File>
|
858
|
+
<File
|
859
|
+
RelativePath=".\zlibvc.def"
|
860
|
+
>
|
861
|
+
</File>
|
862
|
+
<File
|
863
|
+
RelativePath="..\..\..\zutil.c"
|
864
|
+
>
|
865
|
+
</File>
|
866
|
+
</Filter>
|
867
|
+
</Files>
|
868
|
+
<Globals>
|
869
|
+
</Globals>
|
870
|
+
</VisualStudioProject>
|