finishm 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.gitmodules +3 -0
- data/.rspec +1 -0
- data/Gemfile +31 -0
- data/LICENSE.txt +20 -0
- data/README.md +59 -0
- data/Rakefile +51 -0
- data/VERSION +1 -0
- data/bin/assembly_visualiser +106 -0
- data/bin/check_primer_combinations.rb +73 -0
- data/bin/contig_joiner.rb +244 -0
- data/bin/contigs_against_assembly.rb +153 -0
- data/bin/finishm +143 -0
- data/bin/finishm_assembler +55 -0
- data/bin/finishm_gap_closer.rb +241 -0
- data/bin/kmer_abundance_file_tool.rb +49 -0
- data/bin/kmer_pattern_to_assembly.rb +377 -0
- data/bin/kmer_profile_finder.rb +92 -0
- data/bin/kmers_count_parse.d +52 -0
- data/bin/kmers_count_tabulate.d +123 -0
- data/bin/kmers_count_tabulate.rb +84 -0
- data/bin/pcr_result_parser.rb +108 -0
- data/bin/primer_finder.rb +119 -0
- data/bin/read_selection_by_kmer.d +174 -0
- data/bin/scaffold_by_pattern.rb +119 -0
- data/bin/scaffold_connection_possibilities_to_knowns.rb +193 -0
- data/bin/scaffold_end_coverages.rb +69 -0
- data/bin/trail_validator.rb +84 -0
- data/ext/mkrf_conf.rb +56 -0
- data/ext/src/Makefile +140 -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 +2643 -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 +154 -0
- data/ext/src/src/graph.c +3932 -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/graphStructures.h +52 -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/probe_node_finder.c +84 -0
- data/ext/src/src/probe_node_finder.h +6 -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/readToNode.c +218 -0
- data/ext/src/src/readToNode.h +35 -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 +744 -0
- data/ext/src/src/runReadToNode.c +29 -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/adler32.o +0 -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/compress.o +0 -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/crc32.o +0 -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/deflate.o +0 -0
- data/ext/src/third-party/zlib-1.2.3/example +0 -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/gzio.o +0 -0
- data/ext/src/third-party/zlib-1.2.3/infback.c +623 -0
- data/ext/src/third-party/zlib-1.2.3/infback.o +0 -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/inffast.o +0 -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/inflate.o +0 -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/inftrees.o +0 -0
- data/ext/src/third-party/zlib-1.2.3/libz.a +0 -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 +0 -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/trees.o +0 -0
- data/ext/src/third-party/zlib-1.2.3/uncompr.c +61 -0
- data/ext/src/third-party/zlib-1.2.3/uncompr.o +0 -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/ext/src/third-party/zlib-1.2.3/zutil.o +0 -0
- data/lib/assembly/a_b_visualiser.rb +169 -0
- data/lib/assembly/acyclic_connection_finder.rb +81 -0
- data/lib/assembly/all_orfs.rb +615 -0
- data/lib/assembly/bad_format_writer.rb +46 -0
- data/lib/assembly/bam_probe_read_selector.rb +48 -0
- data/lib/assembly/bubbly_assembler.rb +842 -0
- data/lib/assembly/c_probe_node_finder.rb +38 -0
- data/lib/assembly/connection_interpreter.rb +350 -0
- data/lib/assembly/contig_printer.rb +400 -0
- data/lib/assembly/coverage_based_graph_filter.rb +68 -0
- data/lib/assembly/depth_first_search.rb +63 -0
- data/lib/assembly/dijkstra.rb +216 -0
- data/lib/assembly/fluffer.rb +253 -0
- data/lib/assembly/graph_explorer.rb +85 -0
- data/lib/assembly/graph_generator.rb +315 -0
- data/lib/assembly/height_finder.rb +355 -0
- data/lib/assembly/hybrid_velvet_graph.rb +70 -0
- data/lib/assembly/input_genome.rb +182 -0
- data/lib/assembly/kmer_coverage_based_path_filter.rb +65 -0
- data/lib/assembly/node_finder.rb +171 -0
- data/lib/assembly/oriented_node_trail.rb +507 -0
- data/lib/assembly/paired_end_assembler.rb +53 -0
- data/lib/assembly/paired_end_neighbour_finder.rb +176 -0
- data/lib/assembly/probed_graph.rb +105 -0
- data/lib/assembly/read_input.rb +79 -0
- data/lib/assembly/read_to_node.rb +37 -0
- data/lib/assembly/scaffold_breaker.rb +126 -0
- data/lib/assembly/sequence_hasher.rb +71 -0
- data/lib/assembly/single_coherent_paths_between_nodes.rb +533 -0
- data/lib/assembly/single_coherent_wanderer.rb +261 -0
- data/lib/assembly/single_ended_assembler.rb +441 -0
- data/lib/assembly/velvet_c_binding.rb +54 -0
- data/lib/assembly/velvet_graph_sequence_extractor.rb +123 -0
- data/lib/external/VERSION +1 -0
- data/lib/finishm/assemble.rb +224 -0
- data/lib/finishm/explore.rb +217 -0
- data/lib/finishm/finisher.rb +303 -0
- data/lib/finishm/fluff.rb +122 -0
- data/lib/finishm/gapfiller.rb +325 -0
- data/lib/finishm/orfs_finder.rb +88 -0
- data/lib/finishm/path_counter.rb +90 -0
- data/lib/finishm/primers.rb +425 -0
- data/lib/finishm/primers_check.rb +176 -0
- data/lib/finishm/roundup.rb +344 -0
- data/lib/finishm/sequence.rb +142 -0
- data/lib/finishm/visualise.rb +430 -0
- data/lib/finishm/wander.rb +270 -0
- data/lib/kmer_abundance_pattern.rb +79 -0
- data/lib/kmer_multi_abundance_file.rb +48 -0
- data/lib/oligo_designer.rb +88 -0
- data/lib/priner.rb +66 -0
- data/spec/acyclic_connection_finder_spec.rb +551 -0
- data/spec/all_orfs_spec.rb +443 -0
- data/spec/assemble_spec.rb +186 -0
- data/spec/bubbly_assembler_spec.rb +707 -0
- data/spec/c_node_finder_spec.rb +58 -0
- data/spec/connection_interpreter_spec.rb +284 -0
- data/spec/contig_printer_spec.rb +291 -0
- data/spec/coverage_based_graph_filter_spec.rb +102 -0
- data/spec/data/6_3e4e5e6e.1vANME.bam +0 -0
- data/spec/data/6_3e4e5e6e.1vANME.bam.bai +0 -0
- data/spec/data/acyclic_connection_finder/1/probes.fa +5 -0
- data/spec/data/acyclic_connection_finder/1/random1.fa +2 -0
- data/spec/data/acyclic_connection_finder/1/random1.sammy.fa.gz +0 -0
- data/spec/data/acyclic_connection_finder/1/random2.fa +2 -0
- data/spec/data/acyclic_connection_finder/1/random2.sammy.fa.gz +0 -0
- data/spec/data/assembly/1_simple_bubble_uneven_coverage/random3000.fa +39 -0
- data/spec/data/assembly/1_simple_bubble_uneven_coverage/random3000.slightly_changed.fa +39 -0
- data/spec/data/assembly/1_simple_bubble_uneven_coverage/reads_combined.fa.gz +0 -0
- data/spec/data/assembly_visualiser/Contig_6_1_to_250.fa.kmers31 +220 -0
- data/spec/data/assembly_visualiser/Contig_7_1_to_250.fa.kmers31 +220 -0
- data/spec/data/assembly_visualiser/Graph +46 -0
- data/spec/data/assembly_visualiser/start_kmers1 +2 -0
- data/spec/data/bands.csv +1 -0
- data/spec/data/c_probe_node_finder/1/CnyUnifiedSeq +0 -0
- data/spec/data/c_probe_node_finder/1/CnyUnifiedSeq.names +544 -0
- data/spec/data/c_probe_node_finder/1/Graph2 +668 -0
- data/spec/data/c_probe_node_finder/1/LastGraph +668 -0
- data/spec/data/c_probe_node_finder/1/Log +756 -0
- data/spec/data/c_probe_node_finder/1/PreGraph +11 -0
- data/spec/data/c_probe_node_finder/1/Roadmaps +2009 -0
- data/spec/data/c_probe_node_finder/1/contigs.fa +29 -0
- data/spec/data/c_probe_node_finder/1/stats.txt +6 -0
- data/spec/data/contig_printer/1/HOWTO_RECREATE +17 -0
- data/spec/data/contig_printer/1/contigs.fa +4 -0
- data/spec/data/contig_printer/1/seq.fa +2408 -0
- data/spec/data/contig_printer/1/seq.fa.svg +153 -0
- data/spec/data/contig_printer/1/seq.fa.velvet/Graph2 +2953 -0
- data/spec/data/contig_printer/1/seq.fa.velvet/LastGraph +2953 -0
- data/spec/data/contig_printer/1/seq.fa.velvet/Log +21 -0
- data/spec/data/contig_printer/1/seq.fa.velvet/PreGraph +27 -0
- data/spec/data/contig_printer/1/seq.fa.velvet/Roadmaps +5182 -0
- data/spec/data/contig_printer/1/seq.fa.velvet/Sequences +3612 -0
- data/spec/data/contig_printer/1/seq.fa.velvet/contigs.fa +36 -0
- data/spec/data/contig_printer/1/seq.fa.velvet/stats.txt +14 -0
- data/spec/data/contig_printer/1/seq.faVseq2_1to550.fa.bam +0 -0
- data/spec/data/contig_printer/1/seq.faVseq2_1to550.fa.bam.bai +0 -0
- data/spec/data/contig_printer/1/seq.node12.fa +4 -0
- data/spec/data/contig_printer/1/seq1_1to550.fa +2 -0
- data/spec/data/contig_printer/1/seq2_1to550.fa +2 -0
- data/spec/data/contig_printer/1/seq2_1to550.fa.fai +1 -0
- data/spec/data/explore/1/2seqs.sammy.fa +12004 -0
- data/spec/data/explore/1/HOWTO_RECREATE.txt +6 -0
- data/spec/data/explore/1/a.fa +2 -0
- data/spec/data/explore/1/seq1_and_a.fa +3 -0
- data/spec/data/explore/1/seq2.fa +2 -0
- data/spec/data/fluff/1/2seqs.sammy.fa +12004 -0
- data/spec/data/fluff/1/HOWTO_RECREATE.txt +5 -0
- data/spec/data/fluff/1/seq1.fa +2 -0
- data/spec/data/fluff/1/seq2.fa +2 -0
- data/spec/data/gapfilling/1/reads.fa +171 -0
- data/spec/data/gapfilling/1/trail_with_Ns.fa +5 -0
- data/spec/data/gapfilling/1/velvetAssembly/Graph2 +130 -0
- data/spec/data/gapfilling/1/velvetAssembly/LastGraph +130 -0
- data/spec/data/gapfilling/1/velvetAssembly/Log +199 -0
- data/spec/data/gapfilling/1/velvetAssembly/PreGraph +7 -0
- data/spec/data/gapfilling/1/velvetAssembly/Roadmaps +239 -0
- data/spec/data/gapfilling/1/velvetAssembly/Sequences +281 -0
- data/spec/data/gapfilling/1/velvetAssembly/contigs.fa +12 -0
- data/spec/data/gapfilling/1/velvetAssembly/stats.txt +4 -0
- data/spec/data/gapfilling/2/HOWTO_recreate +17 -0
- data/spec/data/gapfilling/2/reference.fa +2 -0
- data/spec/data/gapfilling/2/reference_part1.fa +4 -0
- data/spec/data/gapfilling/2/reference_part2.fa +4 -0
- data/spec/data/gapfilling/2/sammy_reads.fa.gz +0 -0
- data/spec/data/gapfilling/2/with_gaps.fa +4 -0
- data/spec/data/gapfilling/3/HOWTO_recreate +4 -0
- data/spec/data/gapfilling/3/reads.fa.gz +0 -0
- data/spec/data/gapfilling/3/reference_part1.fa +4 -0
- data/spec/data/gapfilling/3/reference_part2.fa +4 -0
- data/spec/data/gapfilling/3/with_gaps.fa +4 -0
- data/spec/data/gapfilling/4/HOWTO_recreate +1 -0
- data/spec/data/gapfilling/4/reads.fa.gz +0 -0
- data/spec/data/gapfilling/5/HOWTO_RECREATE +7 -0
- data/spec/data/gapfilling/5/answer.fna +2 -0
- data/spec/data/gapfilling/5/gappy.fna +2 -0
- data/spec/data/gapfilling/5/reads.fa +17961 -0
- data/spec/data/gapfilling/5/velvet51_3.5/LastGraph +8337 -0
- data/spec/data/gapfilling/5/velvet51_3.5/Sequences +20921 -0
- data/spec/data/gapfilling/6/random1.fa +28 -0
- data/spec/data/gapfilling/6/random2.fa +28 -0
- data/spec/data/gapfilling/6/random_sequence_length_2000 +0 -0
- data/spec/data/gapfilling/6/reads.random1.fa.gz +0 -0
- data/spec/data/gapfilling/6/reads.random2.fa.gz +0 -0
- data/spec/data/gapfilling/6/to_gapfill.fa +22 -0
- data/spec/data/kmer_profile_to_assembly/multiple_abundance_file1.csv +2 -0
- data/spec/data/kmers_count1.csv +2 -0
- data/spec/data/kmers_count2.csv +3 -0
- data/spec/data/out +3 -0
- data/spec/data/positive_latching_pair.fa +2 -0
- data/spec/data/primers.csv +4 -0
- data/spec/data/read_selection_by_kmer/blacklist1.txt +1 -0
- data/spec/data/read_selection_by_kmer/input.fasta +6 -0
- data/spec/data/read_selection_by_kmer/whitelist1.txt +1 -0
- data/spec/data/read_selection_by_kmer/whitelist2.txt +2 -0
- data/spec/data/read_to_node/1_a_graph/HOWTO_RECREATE.txt +2 -0
- data/spec/data/read_to_node/1_a_graph/LastGraph +6695 -0
- data/spec/data/read_to_node/1_a_graph/ReadToNode.bin +0 -0
- data/spec/data/read_to_node/2_no_read256_or_259/HOWTO_RECREATE.txt +3 -0
- data/spec/data/read_to_node/2_no_read256_or_259/LastGraph +6693 -0
- data/spec/data/read_to_node/2_no_read256_or_259/ReadToNode.bin +0 -0
- data/spec/data/read_to_node/3_no_last_read/LastGraph +6694 -0
- data/spec/data/read_to_node/3_no_last_read/ReadToNode.bin +0 -0
- data/spec/data/t/details.txt +5 -0
- data/spec/data/t/details.txt.srt +5 -0
- data/spec/data/t/location.txt +3 -0
- data/spec/data/t/location.txt.srt +3 -0
- data/spec/data/tweak/1_gap_then_unscaffolded/answer.fa +2 -0
- data/spec/data/tweak/1_gap_then_unscaffolded/reads.fa.gz +0 -0
- data/spec/data/tweak/1_gap_then_unscaffolded/scaffolds.fa +6 -0
- data/spec/data/tweak/2_second_genome/answer2.fa +2 -0
- data/spec/data/tweak/2_second_genome/reads.fa.gz +0 -0
- data/spec/data/tweak/3_variant/answer.fa +2 -0
- data/spec/data/tweak/3_variant/lesser_answer.fa +2 -0
- data/spec/data/tweak/3_variant/reads.fa.gz +0 -0
- data/spec/data/tweak/3_variant/with_gaps.fa +2 -0
- data/spec/data/velvet_test_trails/Assem/Graph +17 -0
- data/spec/data/velvet_test_trails/Assem/Graph2 +40 -0
- data/spec/data/velvet_test_trails/Assem/LastGraph +40 -0
- data/spec/data/velvet_test_trails/Assem/Log +35 -0
- data/spec/data/velvet_test_trails/Assem/PreGraph +9 -0
- data/spec/data/velvet_test_trails/Assem/Roadmaps +89 -0
- data/spec/data/velvet_test_trails/Assem/Sequences +50 -0
- data/spec/data/velvet_test_trails/Assem/a.svg +53 -0
- data/spec/data/velvet_test_trails/Assem/contigs.fa +15 -0
- data/spec/data/velvet_test_trails/Assem/stats.txt +5 -0
- data/spec/data/velvet_test_trails/node_fwds.fa +8 -0
- data/spec/data/velvet_test_trails/node_seqs.fa +9 -0
- data/spec/data/velvet_test_trails/nodes_fwd_rev.fa +16 -0
- data/spec/data/velvet_test_trails/read1.fa +2 -0
- data/spec/data/velvet_test_trails/reads.fa +50 -0
- data/spec/data/velvet_test_trails_reverse/Assem/LastGraph +17 -0
- data/spec/data/velvet_test_trails_reverse/Assem/a.svg +53 -0
- data/spec/data/velvet_test_trails_reverse/reads_reversed.fa +10 -0
- data/spec/data/visualise/1/LastGraph +6695 -0
- data/spec/data/visualise/2_paired_end/HOWTO_RECREATE.txt +10 -0
- data/spec/data/visualise/2_paired_end/rand1.fa +2 -0
- data/spec/data/visualise/2_paired_end/rand2.fa +2 -0
- data/spec/data/visualise/2_paired_end/with_gaps.fa +8 -0
- data/spec/data/visualise/2_paired_end/with_gaps.read_pairs.fa.gz +0 -0
- data/spec/data/wander/1/random1.fa +2 -0
- data/spec/data/wander/1/random1.sammy.fa +804 -0
- data/spec/depth_first_search_spec.rb +190 -0
- data/spec/dijkstra_spec.rb +143 -0
- data/spec/explore_spec.rb +29 -0
- data/spec/fluffer_spec.rb +155 -0
- data/spec/gapfiller_spec.rb +107 -0
- data/spec/graph_explorer_spec.rb +475 -0
- data/spec/graph_generator_spec.rb +99 -0
- data/spec/height_finder_spec.rb +306 -0
- data/spec/kmer_abundance_pattern_spec.rb +56 -0
- data/spec/kmer_coverage_based_path_filter_spec.rb +73 -0
- data/spec/kmer_profile_finder_spec.rb +38 -0
- data/spec/kmers_count_tabulate_spec.rb +120 -0
- data/spec/oriented_node_trail_spec.rb +221 -0
- data/spec/paired_end_neighbours_spec.rb +126 -0
- data/spec/paths_between_nodes_spec.rb +349 -0
- data/spec/priner_spec.rb +7 -0
- data/spec/read_input_spec.rb +23 -0
- data/spec/read_selection_by_kmer_spec.rb +166 -0
- data/spec/read_to_node_spec.rb +35 -0
- data/spec/roundup_spec.rb +366 -0
- data/spec/scaffold_breaker_spec.rb +144 -0
- data/spec/sequence_spec.rb +43 -0
- data/spec/single_coherent_paths_between_nodes_spec.rb +492 -0
- data/spec/single_coherent_wanderer_spec.rb +120 -0
- data/spec/single_ended_assembler_spec.rb +398 -0
- data/spec/spec_helper.rb +310 -0
- data/spec/velvet_graph_sequence_extractor_spec.rb +80 -0
- data/spec/visualise_spec.rb +105 -0
- data/spec/wander_spec.rb +119 -0
- data/spec/watch_for_changes.sh +16 -0
- data/validation/fasta_compare.rb +72 -0
- data/validation/gapfill_simulate_perfect.rb +108 -0
- metadata +899 -0
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
|
|
2
|
+
VERSION 1.23
|
|
3
|
+
|
|
4
|
+
HEAPSIZE 1048576,8192
|
|
5
|
+
|
|
6
|
+
EXPORTS
|
|
7
|
+
adler32 @1
|
|
8
|
+
compress @2
|
|
9
|
+
crc32 @3
|
|
10
|
+
deflate @4
|
|
11
|
+
deflateCopy @5
|
|
12
|
+
deflateEnd @6
|
|
13
|
+
deflateInit2_ @7
|
|
14
|
+
deflateInit_ @8
|
|
15
|
+
deflateParams @9
|
|
16
|
+
deflateReset @10
|
|
17
|
+
deflateSetDictionary @11
|
|
18
|
+
gzclose @12
|
|
19
|
+
gzdopen @13
|
|
20
|
+
gzerror @14
|
|
21
|
+
gzflush @15
|
|
22
|
+
gzopen @16
|
|
23
|
+
gzread @17
|
|
24
|
+
gzwrite @18
|
|
25
|
+
inflate @19
|
|
26
|
+
inflateEnd @20
|
|
27
|
+
inflateInit2_ @21
|
|
28
|
+
inflateInit_ @22
|
|
29
|
+
inflateReset @23
|
|
30
|
+
inflateSetDictionary @24
|
|
31
|
+
inflateSync @25
|
|
32
|
+
uncompress @26
|
|
33
|
+
zlibVersion @27
|
|
34
|
+
gzprintf @28
|
|
35
|
+
gzputc @29
|
|
36
|
+
gzgetc @30
|
|
37
|
+
gzseek @31
|
|
38
|
+
gzrewind @32
|
|
39
|
+
gztell @33
|
|
40
|
+
gzeof @34
|
|
41
|
+
gzsetparams @35
|
|
42
|
+
zError @36
|
|
43
|
+
inflateSyncPoint @37
|
|
44
|
+
get_crc_table @38
|
|
45
|
+
compress2 @39
|
|
46
|
+
gzputs @40
|
|
47
|
+
gzgets @41
|
|
48
|
+
inflateCopy @42
|
|
49
|
+
inflateBackInit_ @43
|
|
50
|
+
inflateBack @44
|
|
51
|
+
inflateBackEnd @45
|
|
52
|
+
compressBound @46
|
|
53
|
+
deflateBound @47
|
|
54
|
+
gzclearerr @48
|
|
55
|
+
gzungetc @49
|
|
56
|
+
zlibCompileFlags @50
|
|
57
|
+
deflatePrime @51
|
|
58
|
+
|
|
59
|
+
unzOpen @61
|
|
60
|
+
unzClose @62
|
|
61
|
+
unzGetGlobalInfo @63
|
|
62
|
+
unzGetCurrentFileInfo @64
|
|
63
|
+
unzGoToFirstFile @65
|
|
64
|
+
unzGoToNextFile @66
|
|
65
|
+
unzOpenCurrentFile @67
|
|
66
|
+
unzReadCurrentFile @68
|
|
67
|
+
unzOpenCurrentFile3 @69
|
|
68
|
+
unztell @70
|
|
69
|
+
unzeof @71
|
|
70
|
+
unzCloseCurrentFile @72
|
|
71
|
+
unzGetGlobalComment @73
|
|
72
|
+
unzStringFileNameCompare @74
|
|
73
|
+
unzLocateFile @75
|
|
74
|
+
unzGetLocalExtrafield @76
|
|
75
|
+
unzOpen2 @77
|
|
76
|
+
unzOpenCurrentFile2 @78
|
|
77
|
+
unzOpenCurrentFilePassword @79
|
|
78
|
+
|
|
79
|
+
zipOpen @80
|
|
80
|
+
zipOpenNewFileInZip @81
|
|
81
|
+
zipWriteInFileInZip @82
|
|
82
|
+
zipCloseFileInZip @83
|
|
83
|
+
zipClose @84
|
|
84
|
+
zipOpenNewFileInZip2 @86
|
|
85
|
+
zipCloseFileInZipRaw @87
|
|
86
|
+
zipOpen2 @88
|
|
87
|
+
zipOpenNewFileInZip3 @89
|
|
88
|
+
|
|
89
|
+
unzGetFilePos @100
|
|
90
|
+
unzGoToFilePos @101
|
|
91
|
+
|
|
92
|
+
fill_win32_filefunc @110
|
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
|
|
2
|
+
Microsoft Visual Studio Solution File, Format Version 9.00
|
|
3
|
+
# Visual Studio 2005
|
|
4
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibvc", "zlibvc.vcproj", "{8FD826F8-3739-44E6-8CC8-997122E53B8D}"
|
|
5
|
+
EndProject
|
|
6
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "zlibstat", "zlibstat.vcproj", "{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}"
|
|
7
|
+
EndProject
|
|
8
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testzlib", "testzlib.vcproj", "{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}"
|
|
9
|
+
EndProject
|
|
10
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestZlibDll", "testzlibdll.vcproj", "{C52F9E7B-498A-42BE-8DB4-85A15694366A}"
|
|
11
|
+
ProjectSection(ProjectDependencies) = postProject
|
|
12
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D} = {8FD826F8-3739-44E6-8CC8-997122E53B8D}
|
|
13
|
+
EndProjectSection
|
|
14
|
+
EndProject
|
|
15
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "minizip", "minizip.vcproj", "{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}"
|
|
16
|
+
ProjectSection(ProjectDependencies) = postProject
|
|
17
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D} = {8FD826F8-3739-44E6-8CC8-997122E53B8D}
|
|
18
|
+
EndProjectSection
|
|
19
|
+
EndProject
|
|
20
|
+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "miniunz", "miniunz.vcproj", "{C52F9E7B-498A-42BE-8DB4-85A15694382A}"
|
|
21
|
+
ProjectSection(ProjectDependencies) = postProject
|
|
22
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D} = {8FD826F8-3739-44E6-8CC8-997122E53B8D}
|
|
23
|
+
EndProjectSection
|
|
24
|
+
EndProject
|
|
25
|
+
Global
|
|
26
|
+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
27
|
+
Debug|Itanium = Debug|Itanium
|
|
28
|
+
Debug|Win32 = Debug|Win32
|
|
29
|
+
Debug|x64 = Debug|x64
|
|
30
|
+
Release|Itanium = Release|Itanium
|
|
31
|
+
Release|Win32 = Release|Win32
|
|
32
|
+
Release|x64 = Release|x64
|
|
33
|
+
ReleaseWithoutAsm|Itanium = ReleaseWithoutAsm|Itanium
|
|
34
|
+
ReleaseWithoutAsm|Win32 = ReleaseWithoutAsm|Win32
|
|
35
|
+
ReleaseWithoutAsm|x64 = ReleaseWithoutAsm|x64
|
|
36
|
+
EndGlobalSection
|
|
37
|
+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
38
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Itanium.ActiveCfg = Debug|Itanium
|
|
39
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Itanium.Build.0 = Debug|Itanium
|
|
40
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
41
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|Win32.Build.0 = Debug|Win32
|
|
42
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|x64.ActiveCfg = Debug|x64
|
|
43
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Debug|x64.Build.0 = Debug|x64
|
|
44
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Itanium.ActiveCfg = Release|Itanium
|
|
45
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Itanium.Build.0 = Release|Itanium
|
|
46
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Win32.ActiveCfg = Release|Win32
|
|
47
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|Win32.Build.0 = Release|Win32
|
|
48
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|x64.ActiveCfg = ReleaseWithoutAsm|x64
|
|
49
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.Release|x64.Build.0 = ReleaseWithoutAsm|x64
|
|
50
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Itanium.ActiveCfg = ReleaseWithoutAsm|Itanium
|
|
51
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Itanium.Build.0 = ReleaseWithoutAsm|Itanium
|
|
52
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Win32.ActiveCfg = ReleaseWithoutAsm|Win32
|
|
53
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|Win32.Build.0 = ReleaseWithoutAsm|Win32
|
|
54
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|x64.ActiveCfg = ReleaseWithoutAsm|x64
|
|
55
|
+
{8FD826F8-3739-44E6-8CC8-997122E53B8D}.ReleaseWithoutAsm|x64.Build.0 = ReleaseWithoutAsm|x64
|
|
56
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Itanium.ActiveCfg = Debug|Itanium
|
|
57
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Itanium.Build.0 = Debug|Itanium
|
|
58
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
59
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|Win32.Build.0 = Debug|Win32
|
|
60
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.ActiveCfg = Debug|x64
|
|
61
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Debug|x64.Build.0 = Debug|x64
|
|
62
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Itanium.ActiveCfg = Release|Itanium
|
|
63
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Itanium.Build.0 = Release|Itanium
|
|
64
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.ActiveCfg = Release|Win32
|
|
65
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|Win32.Build.0 = Release|Win32
|
|
66
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.ActiveCfg = Release|x64
|
|
67
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.Release|x64.Build.0 = Release|x64
|
|
68
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Itanium.ActiveCfg = ReleaseWithoutAsm|Itanium
|
|
69
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Itanium.Build.0 = ReleaseWithoutAsm|Itanium
|
|
70
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Win32.ActiveCfg = ReleaseWithoutAsm|Win32
|
|
71
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|Win32.Build.0 = ReleaseWithoutAsm|Win32
|
|
72
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|x64.ActiveCfg = ReleaseWithoutAsm|x64
|
|
73
|
+
{745DEC58-EBB3-47A9-A9B8-4C6627C01BF8}.ReleaseWithoutAsm|x64.Build.0 = ReleaseWithoutAsm|x64
|
|
74
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.ActiveCfg = Debug|Itanium
|
|
75
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.Build.0 = Debug|Itanium
|
|
76
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
77
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.Build.0 = Debug|Win32
|
|
78
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.ActiveCfg = Debug|x64
|
|
79
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.Build.0 = Debug|x64
|
|
80
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.ActiveCfg = Release|Itanium
|
|
81
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.Build.0 = Release|Itanium
|
|
82
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.ActiveCfg = Release|Win32
|
|
83
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.Build.0 = Release|Win32
|
|
84
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.ActiveCfg = Release|x64
|
|
85
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.Build.0 = Release|x64
|
|
86
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.ActiveCfg = ReleaseWithoutAsm|Itanium
|
|
87
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.Build.0 = ReleaseWithoutAsm|Itanium
|
|
88
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Win32.ActiveCfg = ReleaseWithoutAsm|Win32
|
|
89
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Win32.Build.0 = ReleaseWithoutAsm|Win32
|
|
90
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|x64.ActiveCfg = ReleaseWithoutAsm|x64
|
|
91
|
+
{AA6666AA-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|x64.Build.0 = ReleaseWithoutAsm|x64
|
|
92
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Itanium.ActiveCfg = Debug|Itanium
|
|
93
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Itanium.Build.0 = Debug|Itanium
|
|
94
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
95
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|Win32.Build.0 = Debug|Win32
|
|
96
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|x64.ActiveCfg = Debug|x64
|
|
97
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Debug|x64.Build.0 = Debug|x64
|
|
98
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Itanium.ActiveCfg = Release|Itanium
|
|
99
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Itanium.Build.0 = Release|Itanium
|
|
100
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Win32.ActiveCfg = Release|Win32
|
|
101
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|Win32.Build.0 = Release|Win32
|
|
102
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|x64.ActiveCfg = Release|x64
|
|
103
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.Release|x64.Build.0 = Release|x64
|
|
104
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|Itanium.ActiveCfg = Release|Itanium
|
|
105
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|Itanium.Build.0 = Release|Itanium
|
|
106
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|Win32.ActiveCfg = Release|Itanium
|
|
107
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694366A}.ReleaseWithoutAsm|x64.ActiveCfg = Release|Itanium
|
|
108
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.ActiveCfg = Debug|Itanium
|
|
109
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Itanium.Build.0 = Debug|Itanium
|
|
110
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
111
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|Win32.Build.0 = Debug|Win32
|
|
112
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.ActiveCfg = Debug|x64
|
|
113
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Debug|x64.Build.0 = Debug|x64
|
|
114
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.ActiveCfg = Release|Itanium
|
|
115
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Itanium.Build.0 = Release|Itanium
|
|
116
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.ActiveCfg = Release|Win32
|
|
117
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|Win32.Build.0 = Release|Win32
|
|
118
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.ActiveCfg = Release|x64
|
|
119
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.Release|x64.Build.0 = Release|x64
|
|
120
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.ActiveCfg = Release|Itanium
|
|
121
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Itanium.Build.0 = Release|Itanium
|
|
122
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|Win32.ActiveCfg = Release|Itanium
|
|
123
|
+
{48CDD9DC-E09F-4135-9C0C-4FE50C3C654B}.ReleaseWithoutAsm|x64.ActiveCfg = Release|Itanium
|
|
124
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Itanium.ActiveCfg = Debug|Itanium
|
|
125
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Itanium.Build.0 = Debug|Itanium
|
|
126
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Win32.ActiveCfg = Debug|Win32
|
|
127
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|Win32.Build.0 = Debug|Win32
|
|
128
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|x64.ActiveCfg = Debug|x64
|
|
129
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Debug|x64.Build.0 = Debug|x64
|
|
130
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Itanium.ActiveCfg = Release|Itanium
|
|
131
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Itanium.Build.0 = Release|Itanium
|
|
132
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Win32.ActiveCfg = Release|Win32
|
|
133
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|Win32.Build.0 = Release|Win32
|
|
134
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|x64.ActiveCfg = Release|x64
|
|
135
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.Release|x64.Build.0 = Release|x64
|
|
136
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|Itanium.ActiveCfg = Release|Itanium
|
|
137
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|Itanium.Build.0 = Release|Itanium
|
|
138
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|Win32.ActiveCfg = Release|Itanium
|
|
139
|
+
{C52F9E7B-498A-42BE-8DB4-85A15694382A}.ReleaseWithoutAsm|x64.ActiveCfg = Release|Itanium
|
|
140
|
+
EndGlobalSection
|
|
141
|
+
GlobalSection(SolutionProperties) = preSolution
|
|
142
|
+
HideSolutionNode = FALSE
|
|
143
|
+
EndGlobalSection
|
|
144
|
+
EndGlobal
|
|
@@ -0,0 +1,1219 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="Windows-1252"?>
|
|
2
|
+
<VisualStudioProject
|
|
3
|
+
ProjectType="Visual C++"
|
|
4
|
+
Version="8,00"
|
|
5
|
+
Name="zlibvc"
|
|
6
|
+
ProjectGUID="{8FD826F8-3739-44E6-8CC8-997122E53B8D}"
|
|
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\ZlibDll$(ConfigurationName)"
|
|
25
|
+
IntermediateDirectory="x86\ZlibDll$(ConfigurationName)\Tmp"
|
|
26
|
+
ConfigurationType="2"
|
|
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
|
+
PreprocessorDefinitions="_DEBUG"
|
|
46
|
+
MkTypLibCompatible="true"
|
|
47
|
+
SuppressStartupBanner="true"
|
|
48
|
+
TargetEnvironment="1"
|
|
49
|
+
TypeLibraryName="$(OutDir)/zlibvc.tlb"
|
|
50
|
+
/>
|
|
51
|
+
<Tool
|
|
52
|
+
Name="VCCLCompilerTool"
|
|
53
|
+
Optimization="0"
|
|
54
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
|
55
|
+
PreprocessorDefinitions="WIN32,_CRT_SECURE_NO_DEPRECATE,ZLIB_WINAPI,ASMV,ASMINF"
|
|
56
|
+
ExceptionHandling="0"
|
|
57
|
+
RuntimeLibrary="1"
|
|
58
|
+
BufferSecurityCheck="false"
|
|
59
|
+
PrecompiledHeaderFile="$(IntDir)/zlibvc.pch"
|
|
60
|
+
AssemblerListingLocation="$(IntDir)\"
|
|
61
|
+
ObjectFile="$(IntDir)\"
|
|
62
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
|
63
|
+
BrowseInformation="0"
|
|
64
|
+
WarningLevel="3"
|
|
65
|
+
SuppressStartupBanner="true"
|
|
66
|
+
DebugInformationFormat="4"
|
|
67
|
+
/>
|
|
68
|
+
<Tool
|
|
69
|
+
Name="VCManagedResourceCompilerTool"
|
|
70
|
+
/>
|
|
71
|
+
<Tool
|
|
72
|
+
Name="VCResourceCompilerTool"
|
|
73
|
+
PreprocessorDefinitions="_DEBUG"
|
|
74
|
+
Culture="1036"
|
|
75
|
+
/>
|
|
76
|
+
<Tool
|
|
77
|
+
Name="VCPreLinkEventTool"
|
|
78
|
+
/>
|
|
79
|
+
<Tool
|
|
80
|
+
Name="VCLinkerTool"
|
|
81
|
+
AdditionalOptions="/MACHINE:I386"
|
|
82
|
+
AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj"
|
|
83
|
+
OutputFile="$(OutDir)\zlibwapi.dll"
|
|
84
|
+
LinkIncremental="2"
|
|
85
|
+
SuppressStartupBanner="true"
|
|
86
|
+
GenerateManifest="false"
|
|
87
|
+
ModuleDefinitionFile=".\zlibvc.def"
|
|
88
|
+
GenerateDebugInformation="true"
|
|
89
|
+
ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb"
|
|
90
|
+
GenerateMapFile="true"
|
|
91
|
+
MapFileName="$(OutDir)/zlibwapi.map"
|
|
92
|
+
SubSystem="2"
|
|
93
|
+
ImportLibrary="$(OutDir)/zlibwapi.lib"
|
|
94
|
+
/>
|
|
95
|
+
<Tool
|
|
96
|
+
Name="VCALinkTool"
|
|
97
|
+
/>
|
|
98
|
+
<Tool
|
|
99
|
+
Name="VCManifestTool"
|
|
100
|
+
/>
|
|
101
|
+
<Tool
|
|
102
|
+
Name="VCXDCMakeTool"
|
|
103
|
+
/>
|
|
104
|
+
<Tool
|
|
105
|
+
Name="VCBscMakeTool"
|
|
106
|
+
/>
|
|
107
|
+
<Tool
|
|
108
|
+
Name="VCFxCopTool"
|
|
109
|
+
/>
|
|
110
|
+
<Tool
|
|
111
|
+
Name="VCAppVerifierTool"
|
|
112
|
+
/>
|
|
113
|
+
<Tool
|
|
114
|
+
Name="VCWebDeploymentTool"
|
|
115
|
+
/>
|
|
116
|
+
<Tool
|
|
117
|
+
Name="VCPostBuildEventTool"
|
|
118
|
+
/>
|
|
119
|
+
</Configuration>
|
|
120
|
+
<Configuration
|
|
121
|
+
Name="Debug|x64"
|
|
122
|
+
OutputDirectory="x64\ZlibDll$(ConfigurationName)"
|
|
123
|
+
IntermediateDirectory="x64\ZlibDll$(ConfigurationName)\Tmp"
|
|
124
|
+
ConfigurationType="2"
|
|
125
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
|
126
|
+
UseOfMFC="0"
|
|
127
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
|
128
|
+
>
|
|
129
|
+
<Tool
|
|
130
|
+
Name="VCPreBuildEventTool"
|
|
131
|
+
/>
|
|
132
|
+
<Tool
|
|
133
|
+
Name="VCCustomBuildTool"
|
|
134
|
+
/>
|
|
135
|
+
<Tool
|
|
136
|
+
Name="VCXMLDataGeneratorTool"
|
|
137
|
+
/>
|
|
138
|
+
<Tool
|
|
139
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
140
|
+
/>
|
|
141
|
+
<Tool
|
|
142
|
+
Name="VCMIDLTool"
|
|
143
|
+
PreprocessorDefinitions="_DEBUG"
|
|
144
|
+
MkTypLibCompatible="true"
|
|
145
|
+
SuppressStartupBanner="true"
|
|
146
|
+
TargetEnvironment="3"
|
|
147
|
+
TypeLibraryName="$(OutDir)/zlibvc.tlb"
|
|
148
|
+
/>
|
|
149
|
+
<Tool
|
|
150
|
+
Name="VCCLCompilerTool"
|
|
151
|
+
Optimization="0"
|
|
152
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
|
153
|
+
PreprocessorDefinitions="WIN32,_CRT_SECURE_NO_DEPRECATE,ZLIB_WINAPI,ASMV,ASMINF;WIN64"
|
|
154
|
+
ExceptionHandling="0"
|
|
155
|
+
RuntimeLibrary="3"
|
|
156
|
+
BufferSecurityCheck="false"
|
|
157
|
+
PrecompiledHeaderFile="$(IntDir)/zlibvc.pch"
|
|
158
|
+
AssemblerListingLocation="$(IntDir)\"
|
|
159
|
+
ObjectFile="$(IntDir)\"
|
|
160
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
|
161
|
+
BrowseInformation="0"
|
|
162
|
+
WarningLevel="3"
|
|
163
|
+
SuppressStartupBanner="true"
|
|
164
|
+
DebugInformationFormat="3"
|
|
165
|
+
/>
|
|
166
|
+
<Tool
|
|
167
|
+
Name="VCManagedResourceCompilerTool"
|
|
168
|
+
/>
|
|
169
|
+
<Tool
|
|
170
|
+
Name="VCResourceCompilerTool"
|
|
171
|
+
PreprocessorDefinitions="_DEBUG"
|
|
172
|
+
Culture="1036"
|
|
173
|
+
/>
|
|
174
|
+
<Tool
|
|
175
|
+
Name="VCPreLinkEventTool"
|
|
176
|
+
/>
|
|
177
|
+
<Tool
|
|
178
|
+
Name="VCLinkerTool"
|
|
179
|
+
AdditionalDependencies="..\..\masmx64\gvmat64.obj ..\..\masmx64\inffasx64.obj "
|
|
180
|
+
OutputFile="$(OutDir)\zlibwapi.dll"
|
|
181
|
+
LinkIncremental="2"
|
|
182
|
+
SuppressStartupBanner="true"
|
|
183
|
+
GenerateManifest="false"
|
|
184
|
+
ModuleDefinitionFile=".\zlibvc.def"
|
|
185
|
+
GenerateDebugInformation="true"
|
|
186
|
+
ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb"
|
|
187
|
+
GenerateMapFile="true"
|
|
188
|
+
MapFileName="$(OutDir)/zlibwapi.map"
|
|
189
|
+
SubSystem="2"
|
|
190
|
+
ImportLibrary="$(OutDir)/zlibwapi.lib"
|
|
191
|
+
TargetMachine="17"
|
|
192
|
+
/>
|
|
193
|
+
<Tool
|
|
194
|
+
Name="VCALinkTool"
|
|
195
|
+
/>
|
|
196
|
+
<Tool
|
|
197
|
+
Name="VCManifestTool"
|
|
198
|
+
/>
|
|
199
|
+
<Tool
|
|
200
|
+
Name="VCXDCMakeTool"
|
|
201
|
+
/>
|
|
202
|
+
<Tool
|
|
203
|
+
Name="VCBscMakeTool"
|
|
204
|
+
/>
|
|
205
|
+
<Tool
|
|
206
|
+
Name="VCFxCopTool"
|
|
207
|
+
/>
|
|
208
|
+
<Tool
|
|
209
|
+
Name="VCAppVerifierTool"
|
|
210
|
+
/>
|
|
211
|
+
<Tool
|
|
212
|
+
Name="VCWebDeploymentTool"
|
|
213
|
+
/>
|
|
214
|
+
<Tool
|
|
215
|
+
Name="VCPostBuildEventTool"
|
|
216
|
+
/>
|
|
217
|
+
</Configuration>
|
|
218
|
+
<Configuration
|
|
219
|
+
Name="Debug|Itanium"
|
|
220
|
+
OutputDirectory="ia64\ZlibDll$(ConfigurationName)"
|
|
221
|
+
IntermediateDirectory="ia64\ZlibDll$(ConfigurationName)\Tmp"
|
|
222
|
+
ConfigurationType="2"
|
|
223
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
|
224
|
+
UseOfMFC="0"
|
|
225
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
|
226
|
+
>
|
|
227
|
+
<Tool
|
|
228
|
+
Name="VCPreBuildEventTool"
|
|
229
|
+
/>
|
|
230
|
+
<Tool
|
|
231
|
+
Name="VCCustomBuildTool"
|
|
232
|
+
/>
|
|
233
|
+
<Tool
|
|
234
|
+
Name="VCXMLDataGeneratorTool"
|
|
235
|
+
/>
|
|
236
|
+
<Tool
|
|
237
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
238
|
+
/>
|
|
239
|
+
<Tool
|
|
240
|
+
Name="VCMIDLTool"
|
|
241
|
+
PreprocessorDefinitions="_DEBUG"
|
|
242
|
+
MkTypLibCompatible="true"
|
|
243
|
+
SuppressStartupBanner="true"
|
|
244
|
+
TargetEnvironment="2"
|
|
245
|
+
TypeLibraryName="$(OutDir)/zlibvc.tlb"
|
|
246
|
+
/>
|
|
247
|
+
<Tool
|
|
248
|
+
Name="VCCLCompilerTool"
|
|
249
|
+
Optimization="0"
|
|
250
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
|
251
|
+
PreprocessorDefinitions="WIN32;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;WIN64"
|
|
252
|
+
ExceptionHandling="0"
|
|
253
|
+
RuntimeLibrary="3"
|
|
254
|
+
BufferSecurityCheck="false"
|
|
255
|
+
PrecompiledHeaderFile="$(IntDir)/zlibvc.pch"
|
|
256
|
+
AssemblerListingLocation="$(IntDir)\"
|
|
257
|
+
ObjectFile="$(IntDir)\"
|
|
258
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
|
259
|
+
BrowseInformation="0"
|
|
260
|
+
WarningLevel="3"
|
|
261
|
+
SuppressStartupBanner="true"
|
|
262
|
+
DebugInformationFormat="3"
|
|
263
|
+
/>
|
|
264
|
+
<Tool
|
|
265
|
+
Name="VCManagedResourceCompilerTool"
|
|
266
|
+
/>
|
|
267
|
+
<Tool
|
|
268
|
+
Name="VCResourceCompilerTool"
|
|
269
|
+
PreprocessorDefinitions="_DEBUG"
|
|
270
|
+
Culture="1036"
|
|
271
|
+
/>
|
|
272
|
+
<Tool
|
|
273
|
+
Name="VCPreLinkEventTool"
|
|
274
|
+
/>
|
|
275
|
+
<Tool
|
|
276
|
+
Name="VCLinkerTool"
|
|
277
|
+
OutputFile="$(OutDir)\zlibwapi.dll"
|
|
278
|
+
LinkIncremental="2"
|
|
279
|
+
SuppressStartupBanner="true"
|
|
280
|
+
GenerateManifest="false"
|
|
281
|
+
ModuleDefinitionFile=".\zlibvc.def"
|
|
282
|
+
GenerateDebugInformation="true"
|
|
283
|
+
ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb"
|
|
284
|
+
GenerateMapFile="true"
|
|
285
|
+
MapFileName="$(OutDir)/zlibwapi.map"
|
|
286
|
+
SubSystem="2"
|
|
287
|
+
ImportLibrary="$(OutDir)/zlibwapi.lib"
|
|
288
|
+
TargetMachine="5"
|
|
289
|
+
/>
|
|
290
|
+
<Tool
|
|
291
|
+
Name="VCALinkTool"
|
|
292
|
+
/>
|
|
293
|
+
<Tool
|
|
294
|
+
Name="VCManifestTool"
|
|
295
|
+
/>
|
|
296
|
+
<Tool
|
|
297
|
+
Name="VCXDCMakeTool"
|
|
298
|
+
/>
|
|
299
|
+
<Tool
|
|
300
|
+
Name="VCBscMakeTool"
|
|
301
|
+
/>
|
|
302
|
+
<Tool
|
|
303
|
+
Name="VCFxCopTool"
|
|
304
|
+
/>
|
|
305
|
+
<Tool
|
|
306
|
+
Name="VCAppVerifierTool"
|
|
307
|
+
/>
|
|
308
|
+
<Tool
|
|
309
|
+
Name="VCWebDeploymentTool"
|
|
310
|
+
/>
|
|
311
|
+
<Tool
|
|
312
|
+
Name="VCPostBuildEventTool"
|
|
313
|
+
/>
|
|
314
|
+
</Configuration>
|
|
315
|
+
<Configuration
|
|
316
|
+
Name="ReleaseWithoutAsm|Win32"
|
|
317
|
+
OutputDirectory="x86\ZlibDll$(ConfigurationName)"
|
|
318
|
+
IntermediateDirectory="x86\ZlibDll$(ConfigurationName)\Tmp"
|
|
319
|
+
ConfigurationType="2"
|
|
320
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
|
321
|
+
UseOfMFC="0"
|
|
322
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
|
323
|
+
WholeProgramOptimization="1"
|
|
324
|
+
>
|
|
325
|
+
<Tool
|
|
326
|
+
Name="VCPreBuildEventTool"
|
|
327
|
+
/>
|
|
328
|
+
<Tool
|
|
329
|
+
Name="VCCustomBuildTool"
|
|
330
|
+
/>
|
|
331
|
+
<Tool
|
|
332
|
+
Name="VCXMLDataGeneratorTool"
|
|
333
|
+
/>
|
|
334
|
+
<Tool
|
|
335
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
336
|
+
/>
|
|
337
|
+
<Tool
|
|
338
|
+
Name="VCMIDLTool"
|
|
339
|
+
PreprocessorDefinitions="NDEBUG"
|
|
340
|
+
MkTypLibCompatible="true"
|
|
341
|
+
SuppressStartupBanner="true"
|
|
342
|
+
TargetEnvironment="1"
|
|
343
|
+
TypeLibraryName="$(OutDir)/zlibvc.tlb"
|
|
344
|
+
/>
|
|
345
|
+
<Tool
|
|
346
|
+
Name="VCCLCompilerTool"
|
|
347
|
+
InlineFunctionExpansion="1"
|
|
348
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
|
349
|
+
PreprocessorDefinitions="WIN32,_CRT_SECURE_NO_DEPRECATE,ZLIB_WINAPI"
|
|
350
|
+
StringPooling="true"
|
|
351
|
+
ExceptionHandling="0"
|
|
352
|
+
RuntimeLibrary="2"
|
|
353
|
+
BufferSecurityCheck="false"
|
|
354
|
+
EnableFunctionLevelLinking="true"
|
|
355
|
+
PrecompiledHeaderFile="$(IntDir)/zlibvc.pch"
|
|
356
|
+
AssemblerOutput="2"
|
|
357
|
+
AssemblerListingLocation="$(IntDir)\"
|
|
358
|
+
ObjectFile="$(IntDir)\"
|
|
359
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
|
360
|
+
BrowseInformation="0"
|
|
361
|
+
WarningLevel="3"
|
|
362
|
+
SuppressStartupBanner="true"
|
|
363
|
+
/>
|
|
364
|
+
<Tool
|
|
365
|
+
Name="VCManagedResourceCompilerTool"
|
|
366
|
+
/>
|
|
367
|
+
<Tool
|
|
368
|
+
Name="VCResourceCompilerTool"
|
|
369
|
+
PreprocessorDefinitions="NDEBUG"
|
|
370
|
+
Culture="1036"
|
|
371
|
+
/>
|
|
372
|
+
<Tool
|
|
373
|
+
Name="VCPreLinkEventTool"
|
|
374
|
+
/>
|
|
375
|
+
<Tool
|
|
376
|
+
Name="VCLinkerTool"
|
|
377
|
+
AdditionalOptions="/MACHINE:I386"
|
|
378
|
+
OutputFile="$(OutDir)\zlibwapi.dll"
|
|
379
|
+
LinkIncremental="1"
|
|
380
|
+
SuppressStartupBanner="true"
|
|
381
|
+
GenerateManifest="false"
|
|
382
|
+
IgnoreAllDefaultLibraries="false"
|
|
383
|
+
ModuleDefinitionFile=".\zlibvc.def"
|
|
384
|
+
ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb"
|
|
385
|
+
GenerateMapFile="true"
|
|
386
|
+
MapFileName="$(OutDir)/zlibwapi.map"
|
|
387
|
+
SubSystem="2"
|
|
388
|
+
OptimizeForWindows98="1"
|
|
389
|
+
ImportLibrary="$(OutDir)/zlibwapi.lib"
|
|
390
|
+
/>
|
|
391
|
+
<Tool
|
|
392
|
+
Name="VCALinkTool"
|
|
393
|
+
/>
|
|
394
|
+
<Tool
|
|
395
|
+
Name="VCManifestTool"
|
|
396
|
+
/>
|
|
397
|
+
<Tool
|
|
398
|
+
Name="VCXDCMakeTool"
|
|
399
|
+
/>
|
|
400
|
+
<Tool
|
|
401
|
+
Name="VCBscMakeTool"
|
|
402
|
+
/>
|
|
403
|
+
<Tool
|
|
404
|
+
Name="VCFxCopTool"
|
|
405
|
+
/>
|
|
406
|
+
<Tool
|
|
407
|
+
Name="VCAppVerifierTool"
|
|
408
|
+
/>
|
|
409
|
+
<Tool
|
|
410
|
+
Name="VCWebDeploymentTool"
|
|
411
|
+
/>
|
|
412
|
+
<Tool
|
|
413
|
+
Name="VCPostBuildEventTool"
|
|
414
|
+
/>
|
|
415
|
+
</Configuration>
|
|
416
|
+
<Configuration
|
|
417
|
+
Name="ReleaseWithoutAsm|x64"
|
|
418
|
+
OutputDirectory="x64\ZlibDll$(ConfigurationName)"
|
|
419
|
+
IntermediateDirectory="x64\ZlibDll$(ConfigurationName)\Tmp"
|
|
420
|
+
ConfigurationType="2"
|
|
421
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
|
422
|
+
UseOfMFC="0"
|
|
423
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
|
424
|
+
WholeProgramOptimization="1"
|
|
425
|
+
>
|
|
426
|
+
<Tool
|
|
427
|
+
Name="VCPreBuildEventTool"
|
|
428
|
+
/>
|
|
429
|
+
<Tool
|
|
430
|
+
Name="VCCustomBuildTool"
|
|
431
|
+
/>
|
|
432
|
+
<Tool
|
|
433
|
+
Name="VCXMLDataGeneratorTool"
|
|
434
|
+
/>
|
|
435
|
+
<Tool
|
|
436
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
437
|
+
/>
|
|
438
|
+
<Tool
|
|
439
|
+
Name="VCMIDLTool"
|
|
440
|
+
PreprocessorDefinitions="NDEBUG"
|
|
441
|
+
MkTypLibCompatible="true"
|
|
442
|
+
SuppressStartupBanner="true"
|
|
443
|
+
TargetEnvironment="3"
|
|
444
|
+
TypeLibraryName="$(OutDir)/zlibvc.tlb"
|
|
445
|
+
/>
|
|
446
|
+
<Tool
|
|
447
|
+
Name="VCCLCompilerTool"
|
|
448
|
+
InlineFunctionExpansion="1"
|
|
449
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
|
450
|
+
PreprocessorDefinitions="WIN32,_CRT_SECURE_NO_DEPRECATE,ZLIB_WINAPI;WIN64"
|
|
451
|
+
StringPooling="true"
|
|
452
|
+
ExceptionHandling="0"
|
|
453
|
+
RuntimeLibrary="2"
|
|
454
|
+
BufferSecurityCheck="false"
|
|
455
|
+
EnableFunctionLevelLinking="true"
|
|
456
|
+
PrecompiledHeaderFile="$(IntDir)/zlibvc.pch"
|
|
457
|
+
AssemblerOutput="2"
|
|
458
|
+
AssemblerListingLocation="$(IntDir)\"
|
|
459
|
+
ObjectFile="$(IntDir)\"
|
|
460
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
|
461
|
+
BrowseInformation="0"
|
|
462
|
+
WarningLevel="3"
|
|
463
|
+
SuppressStartupBanner="true"
|
|
464
|
+
/>
|
|
465
|
+
<Tool
|
|
466
|
+
Name="VCManagedResourceCompilerTool"
|
|
467
|
+
/>
|
|
468
|
+
<Tool
|
|
469
|
+
Name="VCResourceCompilerTool"
|
|
470
|
+
PreprocessorDefinitions="NDEBUG"
|
|
471
|
+
Culture="1036"
|
|
472
|
+
/>
|
|
473
|
+
<Tool
|
|
474
|
+
Name="VCPreLinkEventTool"
|
|
475
|
+
/>
|
|
476
|
+
<Tool
|
|
477
|
+
Name="VCLinkerTool"
|
|
478
|
+
OutputFile="$(OutDir)\zlibwapi.dll"
|
|
479
|
+
LinkIncremental="1"
|
|
480
|
+
SuppressStartupBanner="true"
|
|
481
|
+
GenerateManifest="false"
|
|
482
|
+
IgnoreAllDefaultLibraries="false"
|
|
483
|
+
ModuleDefinitionFile=".\zlibvc.def"
|
|
484
|
+
ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb"
|
|
485
|
+
GenerateMapFile="true"
|
|
486
|
+
MapFileName="$(OutDir)/zlibwapi.map"
|
|
487
|
+
SubSystem="2"
|
|
488
|
+
OptimizeForWindows98="1"
|
|
489
|
+
ImportLibrary="$(OutDir)/zlibwapi.lib"
|
|
490
|
+
TargetMachine="17"
|
|
491
|
+
/>
|
|
492
|
+
<Tool
|
|
493
|
+
Name="VCALinkTool"
|
|
494
|
+
/>
|
|
495
|
+
<Tool
|
|
496
|
+
Name="VCManifestTool"
|
|
497
|
+
/>
|
|
498
|
+
<Tool
|
|
499
|
+
Name="VCXDCMakeTool"
|
|
500
|
+
/>
|
|
501
|
+
<Tool
|
|
502
|
+
Name="VCBscMakeTool"
|
|
503
|
+
/>
|
|
504
|
+
<Tool
|
|
505
|
+
Name="VCFxCopTool"
|
|
506
|
+
/>
|
|
507
|
+
<Tool
|
|
508
|
+
Name="VCAppVerifierTool"
|
|
509
|
+
/>
|
|
510
|
+
<Tool
|
|
511
|
+
Name="VCWebDeploymentTool"
|
|
512
|
+
/>
|
|
513
|
+
<Tool
|
|
514
|
+
Name="VCPostBuildEventTool"
|
|
515
|
+
/>
|
|
516
|
+
</Configuration>
|
|
517
|
+
<Configuration
|
|
518
|
+
Name="ReleaseWithoutAsm|Itanium"
|
|
519
|
+
OutputDirectory="ia64\ZlibDll$(ConfigurationName)"
|
|
520
|
+
IntermediateDirectory="ia64\ZlibDll$(ConfigurationName)\Tmp"
|
|
521
|
+
ConfigurationType="2"
|
|
522
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
|
523
|
+
UseOfMFC="0"
|
|
524
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
|
525
|
+
WholeProgramOptimization="1"
|
|
526
|
+
>
|
|
527
|
+
<Tool
|
|
528
|
+
Name="VCPreBuildEventTool"
|
|
529
|
+
/>
|
|
530
|
+
<Tool
|
|
531
|
+
Name="VCCustomBuildTool"
|
|
532
|
+
/>
|
|
533
|
+
<Tool
|
|
534
|
+
Name="VCXMLDataGeneratorTool"
|
|
535
|
+
/>
|
|
536
|
+
<Tool
|
|
537
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
538
|
+
/>
|
|
539
|
+
<Tool
|
|
540
|
+
Name="VCMIDLTool"
|
|
541
|
+
PreprocessorDefinitions="NDEBUG"
|
|
542
|
+
MkTypLibCompatible="true"
|
|
543
|
+
SuppressStartupBanner="true"
|
|
544
|
+
TargetEnvironment="2"
|
|
545
|
+
TypeLibraryName="$(OutDir)/zlibvc.tlb"
|
|
546
|
+
/>
|
|
547
|
+
<Tool
|
|
548
|
+
Name="VCCLCompilerTool"
|
|
549
|
+
InlineFunctionExpansion="1"
|
|
550
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
|
551
|
+
PreprocessorDefinitions="WIN32,_CRT_SECURE_NO_DEPRECATE,ZLIB_WINAPI;WIN64"
|
|
552
|
+
StringPooling="true"
|
|
553
|
+
ExceptionHandling="0"
|
|
554
|
+
RuntimeLibrary="2"
|
|
555
|
+
BufferSecurityCheck="false"
|
|
556
|
+
EnableFunctionLevelLinking="true"
|
|
557
|
+
PrecompiledHeaderFile="$(IntDir)/zlibvc.pch"
|
|
558
|
+
AssemblerOutput="2"
|
|
559
|
+
AssemblerListingLocation="$(IntDir)\"
|
|
560
|
+
ObjectFile="$(IntDir)\"
|
|
561
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
|
562
|
+
BrowseInformation="0"
|
|
563
|
+
WarningLevel="3"
|
|
564
|
+
SuppressStartupBanner="true"
|
|
565
|
+
/>
|
|
566
|
+
<Tool
|
|
567
|
+
Name="VCManagedResourceCompilerTool"
|
|
568
|
+
/>
|
|
569
|
+
<Tool
|
|
570
|
+
Name="VCResourceCompilerTool"
|
|
571
|
+
PreprocessorDefinitions="NDEBUG"
|
|
572
|
+
Culture="1036"
|
|
573
|
+
/>
|
|
574
|
+
<Tool
|
|
575
|
+
Name="VCPreLinkEventTool"
|
|
576
|
+
/>
|
|
577
|
+
<Tool
|
|
578
|
+
Name="VCLinkerTool"
|
|
579
|
+
OutputFile="$(OutDir)\zlibwapi.dll"
|
|
580
|
+
LinkIncremental="1"
|
|
581
|
+
SuppressStartupBanner="true"
|
|
582
|
+
GenerateManifest="false"
|
|
583
|
+
IgnoreAllDefaultLibraries="false"
|
|
584
|
+
ModuleDefinitionFile=".\zlibvc.def"
|
|
585
|
+
ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb"
|
|
586
|
+
GenerateMapFile="true"
|
|
587
|
+
MapFileName="$(OutDir)/zlibwapi.map"
|
|
588
|
+
SubSystem="2"
|
|
589
|
+
OptimizeForWindows98="1"
|
|
590
|
+
ImportLibrary="$(OutDir)/zlibwapi.lib"
|
|
591
|
+
TargetMachine="5"
|
|
592
|
+
/>
|
|
593
|
+
<Tool
|
|
594
|
+
Name="VCALinkTool"
|
|
595
|
+
/>
|
|
596
|
+
<Tool
|
|
597
|
+
Name="VCManifestTool"
|
|
598
|
+
/>
|
|
599
|
+
<Tool
|
|
600
|
+
Name="VCXDCMakeTool"
|
|
601
|
+
/>
|
|
602
|
+
<Tool
|
|
603
|
+
Name="VCBscMakeTool"
|
|
604
|
+
/>
|
|
605
|
+
<Tool
|
|
606
|
+
Name="VCFxCopTool"
|
|
607
|
+
/>
|
|
608
|
+
<Tool
|
|
609
|
+
Name="VCAppVerifierTool"
|
|
610
|
+
/>
|
|
611
|
+
<Tool
|
|
612
|
+
Name="VCWebDeploymentTool"
|
|
613
|
+
/>
|
|
614
|
+
<Tool
|
|
615
|
+
Name="VCPostBuildEventTool"
|
|
616
|
+
/>
|
|
617
|
+
</Configuration>
|
|
618
|
+
<Configuration
|
|
619
|
+
Name="Release|Win32"
|
|
620
|
+
OutputDirectory="x86\ZlibDll$(ConfigurationName)"
|
|
621
|
+
IntermediateDirectory="x86\ZlibDll$(ConfigurationName)\Tmp"
|
|
622
|
+
ConfigurationType="2"
|
|
623
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
|
624
|
+
UseOfMFC="0"
|
|
625
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
|
626
|
+
WholeProgramOptimization="1"
|
|
627
|
+
>
|
|
628
|
+
<Tool
|
|
629
|
+
Name="VCPreBuildEventTool"
|
|
630
|
+
/>
|
|
631
|
+
<Tool
|
|
632
|
+
Name="VCCustomBuildTool"
|
|
633
|
+
/>
|
|
634
|
+
<Tool
|
|
635
|
+
Name="VCXMLDataGeneratorTool"
|
|
636
|
+
/>
|
|
637
|
+
<Tool
|
|
638
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
639
|
+
/>
|
|
640
|
+
<Tool
|
|
641
|
+
Name="VCMIDLTool"
|
|
642
|
+
PreprocessorDefinitions="NDEBUG"
|
|
643
|
+
MkTypLibCompatible="true"
|
|
644
|
+
SuppressStartupBanner="true"
|
|
645
|
+
TargetEnvironment="1"
|
|
646
|
+
TypeLibraryName="$(OutDir)/zlibvc.tlb"
|
|
647
|
+
/>
|
|
648
|
+
<Tool
|
|
649
|
+
Name="VCCLCompilerTool"
|
|
650
|
+
InlineFunctionExpansion="1"
|
|
651
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
|
652
|
+
PreprocessorDefinitions="WIN32;_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;ASMV;ASMINF"
|
|
653
|
+
StringPooling="true"
|
|
654
|
+
ExceptionHandling="0"
|
|
655
|
+
RuntimeLibrary="2"
|
|
656
|
+
BufferSecurityCheck="false"
|
|
657
|
+
EnableFunctionLevelLinking="true"
|
|
658
|
+
PrecompiledHeaderFile="$(IntDir)/zlibvc.pch"
|
|
659
|
+
AssemblerOutput="2"
|
|
660
|
+
AssemblerListingLocation="$(IntDir)\"
|
|
661
|
+
ObjectFile="$(IntDir)\"
|
|
662
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
|
663
|
+
BrowseInformation="0"
|
|
664
|
+
WarningLevel="3"
|
|
665
|
+
SuppressStartupBanner="true"
|
|
666
|
+
/>
|
|
667
|
+
<Tool
|
|
668
|
+
Name="VCManagedResourceCompilerTool"
|
|
669
|
+
/>
|
|
670
|
+
<Tool
|
|
671
|
+
Name="VCResourceCompilerTool"
|
|
672
|
+
PreprocessorDefinitions="NDEBUG"
|
|
673
|
+
Culture="1036"
|
|
674
|
+
/>
|
|
675
|
+
<Tool
|
|
676
|
+
Name="VCPreLinkEventTool"
|
|
677
|
+
/>
|
|
678
|
+
<Tool
|
|
679
|
+
Name="VCLinkerTool"
|
|
680
|
+
AdditionalOptions="/MACHINE:I386"
|
|
681
|
+
AdditionalDependencies="..\..\masmx86\gvmat32.obj ..\..\masmx86\inffas32.obj "
|
|
682
|
+
OutputFile="$(OutDir)\zlibwapi.dll"
|
|
683
|
+
LinkIncremental="1"
|
|
684
|
+
SuppressStartupBanner="true"
|
|
685
|
+
GenerateManifest="false"
|
|
686
|
+
IgnoreAllDefaultLibraries="false"
|
|
687
|
+
ModuleDefinitionFile=".\zlibvc.def"
|
|
688
|
+
ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb"
|
|
689
|
+
GenerateMapFile="true"
|
|
690
|
+
MapFileName="$(OutDir)/zlibwapi.map"
|
|
691
|
+
SubSystem="2"
|
|
692
|
+
OptimizeForWindows98="1"
|
|
693
|
+
ImportLibrary="$(OutDir)/zlibwapi.lib"
|
|
694
|
+
/>
|
|
695
|
+
<Tool
|
|
696
|
+
Name="VCALinkTool"
|
|
697
|
+
/>
|
|
698
|
+
<Tool
|
|
699
|
+
Name="VCManifestTool"
|
|
700
|
+
/>
|
|
701
|
+
<Tool
|
|
702
|
+
Name="VCXDCMakeTool"
|
|
703
|
+
/>
|
|
704
|
+
<Tool
|
|
705
|
+
Name="VCBscMakeTool"
|
|
706
|
+
/>
|
|
707
|
+
<Tool
|
|
708
|
+
Name="VCFxCopTool"
|
|
709
|
+
/>
|
|
710
|
+
<Tool
|
|
711
|
+
Name="VCAppVerifierTool"
|
|
712
|
+
/>
|
|
713
|
+
<Tool
|
|
714
|
+
Name="VCWebDeploymentTool"
|
|
715
|
+
/>
|
|
716
|
+
<Tool
|
|
717
|
+
Name="VCPostBuildEventTool"
|
|
718
|
+
/>
|
|
719
|
+
</Configuration>
|
|
720
|
+
<Configuration
|
|
721
|
+
Name="Release|x64"
|
|
722
|
+
OutputDirectory="x64\ZlibDll$(ConfigurationName)"
|
|
723
|
+
IntermediateDirectory="x64\ZlibDll$(ConfigurationName)\Tmp"
|
|
724
|
+
ConfigurationType="2"
|
|
725
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
|
726
|
+
UseOfMFC="0"
|
|
727
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
|
728
|
+
WholeProgramOptimization="1"
|
|
729
|
+
>
|
|
730
|
+
<Tool
|
|
731
|
+
Name="VCPreBuildEventTool"
|
|
732
|
+
/>
|
|
733
|
+
<Tool
|
|
734
|
+
Name="VCCustomBuildTool"
|
|
735
|
+
/>
|
|
736
|
+
<Tool
|
|
737
|
+
Name="VCXMLDataGeneratorTool"
|
|
738
|
+
/>
|
|
739
|
+
<Tool
|
|
740
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
741
|
+
/>
|
|
742
|
+
<Tool
|
|
743
|
+
Name="VCMIDLTool"
|
|
744
|
+
PreprocessorDefinitions="NDEBUG"
|
|
745
|
+
MkTypLibCompatible="true"
|
|
746
|
+
SuppressStartupBanner="true"
|
|
747
|
+
TargetEnvironment="3"
|
|
748
|
+
TypeLibraryName="$(OutDir)/zlibvc.tlb"
|
|
749
|
+
/>
|
|
750
|
+
<Tool
|
|
751
|
+
Name="VCCLCompilerTool"
|
|
752
|
+
InlineFunctionExpansion="1"
|
|
753
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
|
754
|
+
PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;ASMV;ASMINF;WIN64"
|
|
755
|
+
StringPooling="true"
|
|
756
|
+
ExceptionHandling="0"
|
|
757
|
+
RuntimeLibrary="2"
|
|
758
|
+
BufferSecurityCheck="false"
|
|
759
|
+
EnableFunctionLevelLinking="true"
|
|
760
|
+
PrecompiledHeaderFile="$(IntDir)/zlibvc.pch"
|
|
761
|
+
AssemblerOutput="2"
|
|
762
|
+
AssemblerListingLocation="$(IntDir)\"
|
|
763
|
+
ObjectFile="$(IntDir)\"
|
|
764
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
|
765
|
+
BrowseInformation="0"
|
|
766
|
+
WarningLevel="3"
|
|
767
|
+
SuppressStartupBanner="true"
|
|
768
|
+
/>
|
|
769
|
+
<Tool
|
|
770
|
+
Name="VCManagedResourceCompilerTool"
|
|
771
|
+
/>
|
|
772
|
+
<Tool
|
|
773
|
+
Name="VCResourceCompilerTool"
|
|
774
|
+
PreprocessorDefinitions="NDEBUG"
|
|
775
|
+
Culture="1036"
|
|
776
|
+
/>
|
|
777
|
+
<Tool
|
|
778
|
+
Name="VCPreLinkEventTool"
|
|
779
|
+
/>
|
|
780
|
+
<Tool
|
|
781
|
+
Name="VCLinkerTool"
|
|
782
|
+
AdditionalDependencies="..\..\masmx64\gvmat64.obj ..\..\masmx64\inffasx64.obj "
|
|
783
|
+
OutputFile="$(OutDir)\zlibwapi.dll"
|
|
784
|
+
LinkIncremental="1"
|
|
785
|
+
SuppressStartupBanner="true"
|
|
786
|
+
GenerateManifest="false"
|
|
787
|
+
IgnoreAllDefaultLibraries="false"
|
|
788
|
+
ModuleDefinitionFile=".\zlibvc.def"
|
|
789
|
+
ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb"
|
|
790
|
+
GenerateMapFile="true"
|
|
791
|
+
MapFileName="$(OutDir)/zlibwapi.map"
|
|
792
|
+
SubSystem="2"
|
|
793
|
+
OptimizeForWindows98="1"
|
|
794
|
+
ImportLibrary="$(OutDir)/zlibwapi.lib"
|
|
795
|
+
TargetMachine="17"
|
|
796
|
+
/>
|
|
797
|
+
<Tool
|
|
798
|
+
Name="VCALinkTool"
|
|
799
|
+
/>
|
|
800
|
+
<Tool
|
|
801
|
+
Name="VCManifestTool"
|
|
802
|
+
/>
|
|
803
|
+
<Tool
|
|
804
|
+
Name="VCXDCMakeTool"
|
|
805
|
+
/>
|
|
806
|
+
<Tool
|
|
807
|
+
Name="VCBscMakeTool"
|
|
808
|
+
/>
|
|
809
|
+
<Tool
|
|
810
|
+
Name="VCFxCopTool"
|
|
811
|
+
/>
|
|
812
|
+
<Tool
|
|
813
|
+
Name="VCAppVerifierTool"
|
|
814
|
+
/>
|
|
815
|
+
<Tool
|
|
816
|
+
Name="VCWebDeploymentTool"
|
|
817
|
+
/>
|
|
818
|
+
<Tool
|
|
819
|
+
Name="VCPostBuildEventTool"
|
|
820
|
+
/>
|
|
821
|
+
</Configuration>
|
|
822
|
+
<Configuration
|
|
823
|
+
Name="Release|Itanium"
|
|
824
|
+
OutputDirectory="ia64\ZlibDll$(ConfigurationName)"
|
|
825
|
+
IntermediateDirectory="ia64\ZlibDll$(ConfigurationName)\Tmp"
|
|
826
|
+
ConfigurationType="2"
|
|
827
|
+
InheritedPropertySheets="UpgradeFromVC70.vsprops"
|
|
828
|
+
UseOfMFC="0"
|
|
829
|
+
ATLMinimizesCRunTimeLibraryUsage="false"
|
|
830
|
+
WholeProgramOptimization="1"
|
|
831
|
+
>
|
|
832
|
+
<Tool
|
|
833
|
+
Name="VCPreBuildEventTool"
|
|
834
|
+
/>
|
|
835
|
+
<Tool
|
|
836
|
+
Name="VCCustomBuildTool"
|
|
837
|
+
/>
|
|
838
|
+
<Tool
|
|
839
|
+
Name="VCXMLDataGeneratorTool"
|
|
840
|
+
/>
|
|
841
|
+
<Tool
|
|
842
|
+
Name="VCWebServiceProxyGeneratorTool"
|
|
843
|
+
/>
|
|
844
|
+
<Tool
|
|
845
|
+
Name="VCMIDLTool"
|
|
846
|
+
PreprocessorDefinitions="NDEBUG"
|
|
847
|
+
MkTypLibCompatible="true"
|
|
848
|
+
SuppressStartupBanner="true"
|
|
849
|
+
TargetEnvironment="2"
|
|
850
|
+
TypeLibraryName="$(OutDir)/zlibvc.tlb"
|
|
851
|
+
/>
|
|
852
|
+
<Tool
|
|
853
|
+
Name="VCCLCompilerTool"
|
|
854
|
+
InlineFunctionExpansion="1"
|
|
855
|
+
AdditionalIncludeDirectories="..\..\..;..\..\masmx86"
|
|
856
|
+
PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;ZLIB_WINAPI;WIN64"
|
|
857
|
+
StringPooling="true"
|
|
858
|
+
ExceptionHandling="0"
|
|
859
|
+
RuntimeLibrary="2"
|
|
860
|
+
BufferSecurityCheck="false"
|
|
861
|
+
EnableFunctionLevelLinking="true"
|
|
862
|
+
PrecompiledHeaderFile="$(IntDir)/zlibvc.pch"
|
|
863
|
+
AssemblerOutput="2"
|
|
864
|
+
AssemblerListingLocation="$(IntDir)\"
|
|
865
|
+
ObjectFile="$(IntDir)\"
|
|
866
|
+
ProgramDataBaseFileName="$(OutDir)\"
|
|
867
|
+
BrowseInformation="0"
|
|
868
|
+
WarningLevel="3"
|
|
869
|
+
SuppressStartupBanner="true"
|
|
870
|
+
/>
|
|
871
|
+
<Tool
|
|
872
|
+
Name="VCManagedResourceCompilerTool"
|
|
873
|
+
/>
|
|
874
|
+
<Tool
|
|
875
|
+
Name="VCResourceCompilerTool"
|
|
876
|
+
PreprocessorDefinitions="NDEBUG"
|
|
877
|
+
Culture="1036"
|
|
878
|
+
/>
|
|
879
|
+
<Tool
|
|
880
|
+
Name="VCPreLinkEventTool"
|
|
881
|
+
/>
|
|
882
|
+
<Tool
|
|
883
|
+
Name="VCLinkerTool"
|
|
884
|
+
OutputFile="$(OutDir)\zlibwapi.dll"
|
|
885
|
+
LinkIncremental="1"
|
|
886
|
+
SuppressStartupBanner="true"
|
|
887
|
+
GenerateManifest="false"
|
|
888
|
+
IgnoreAllDefaultLibraries="false"
|
|
889
|
+
ModuleDefinitionFile=".\zlibvc.def"
|
|
890
|
+
ProgramDatabaseFile="$(OutDir)/zlibwapi.pdb"
|
|
891
|
+
GenerateMapFile="true"
|
|
892
|
+
MapFileName="$(OutDir)/zlibwapi.map"
|
|
893
|
+
SubSystem="2"
|
|
894
|
+
OptimizeForWindows98="1"
|
|
895
|
+
ImportLibrary="$(OutDir)/zlibwapi.lib"
|
|
896
|
+
TargetMachine="5"
|
|
897
|
+
/>
|
|
898
|
+
<Tool
|
|
899
|
+
Name="VCALinkTool"
|
|
900
|
+
/>
|
|
901
|
+
<Tool
|
|
902
|
+
Name="VCManifestTool"
|
|
903
|
+
/>
|
|
904
|
+
<Tool
|
|
905
|
+
Name="VCXDCMakeTool"
|
|
906
|
+
/>
|
|
907
|
+
<Tool
|
|
908
|
+
Name="VCBscMakeTool"
|
|
909
|
+
/>
|
|
910
|
+
<Tool
|
|
911
|
+
Name="VCFxCopTool"
|
|
912
|
+
/>
|
|
913
|
+
<Tool
|
|
914
|
+
Name="VCAppVerifierTool"
|
|
915
|
+
/>
|
|
916
|
+
<Tool
|
|
917
|
+
Name="VCWebDeploymentTool"
|
|
918
|
+
/>
|
|
919
|
+
<Tool
|
|
920
|
+
Name="VCPostBuildEventTool"
|
|
921
|
+
/>
|
|
922
|
+
</Configuration>
|
|
923
|
+
</Configurations>
|
|
924
|
+
<References>
|
|
925
|
+
</References>
|
|
926
|
+
<Files>
|
|
927
|
+
<Filter
|
|
928
|
+
Name="Source Files"
|
|
929
|
+
Filter="cpp;c;cxx;rc;def;r;odl;hpj;bat;for;f90"
|
|
930
|
+
>
|
|
931
|
+
<File
|
|
932
|
+
RelativePath="..\..\..\adler32.c"
|
|
933
|
+
>
|
|
934
|
+
</File>
|
|
935
|
+
<File
|
|
936
|
+
RelativePath="..\..\..\compress.c"
|
|
937
|
+
>
|
|
938
|
+
</File>
|
|
939
|
+
<File
|
|
940
|
+
RelativePath="..\..\..\crc32.c"
|
|
941
|
+
>
|
|
942
|
+
</File>
|
|
943
|
+
<File
|
|
944
|
+
RelativePath="..\..\..\deflate.c"
|
|
945
|
+
>
|
|
946
|
+
</File>
|
|
947
|
+
<File
|
|
948
|
+
RelativePath="..\..\masmx86\gvmat32c.c"
|
|
949
|
+
>
|
|
950
|
+
<FileConfiguration
|
|
951
|
+
Name="Debug|x64"
|
|
952
|
+
ExcludedFromBuild="true"
|
|
953
|
+
>
|
|
954
|
+
<Tool
|
|
955
|
+
Name="VCCLCompilerTool"
|
|
956
|
+
/>
|
|
957
|
+
</FileConfiguration>
|
|
958
|
+
<FileConfiguration
|
|
959
|
+
Name="Debug|Itanium"
|
|
960
|
+
ExcludedFromBuild="true"
|
|
961
|
+
>
|
|
962
|
+
<Tool
|
|
963
|
+
Name="VCCLCompilerTool"
|
|
964
|
+
/>
|
|
965
|
+
</FileConfiguration>
|
|
966
|
+
<FileConfiguration
|
|
967
|
+
Name="ReleaseWithoutAsm|Win32"
|
|
968
|
+
ExcludedFromBuild="true"
|
|
969
|
+
>
|
|
970
|
+
<Tool
|
|
971
|
+
Name="VCCLCompilerTool"
|
|
972
|
+
/>
|
|
973
|
+
</FileConfiguration>
|
|
974
|
+
<FileConfiguration
|
|
975
|
+
Name="ReleaseWithoutAsm|x64"
|
|
976
|
+
ExcludedFromBuild="true"
|
|
977
|
+
>
|
|
978
|
+
<Tool
|
|
979
|
+
Name="VCCLCompilerTool"
|
|
980
|
+
/>
|
|
981
|
+
</FileConfiguration>
|
|
982
|
+
<FileConfiguration
|
|
983
|
+
Name="ReleaseWithoutAsm|Itanium"
|
|
984
|
+
ExcludedFromBuild="true"
|
|
985
|
+
>
|
|
986
|
+
<Tool
|
|
987
|
+
Name="VCCLCompilerTool"
|
|
988
|
+
/>
|
|
989
|
+
</FileConfiguration>
|
|
990
|
+
<FileConfiguration
|
|
991
|
+
Name="Release|x64"
|
|
992
|
+
ExcludedFromBuild="true"
|
|
993
|
+
>
|
|
994
|
+
<Tool
|
|
995
|
+
Name="VCCLCompilerTool"
|
|
996
|
+
/>
|
|
997
|
+
</FileConfiguration>
|
|
998
|
+
<FileConfiguration
|
|
999
|
+
Name="Release|Itanium"
|
|
1000
|
+
ExcludedFromBuild="true"
|
|
1001
|
+
>
|
|
1002
|
+
<Tool
|
|
1003
|
+
Name="VCCLCompilerTool"
|
|
1004
|
+
/>
|
|
1005
|
+
</FileConfiguration>
|
|
1006
|
+
</File>
|
|
1007
|
+
<File
|
|
1008
|
+
RelativePath="..\..\..\gzio.c"
|
|
1009
|
+
>
|
|
1010
|
+
</File>
|
|
1011
|
+
<File
|
|
1012
|
+
RelativePath="..\..\..\infback.c"
|
|
1013
|
+
>
|
|
1014
|
+
</File>
|
|
1015
|
+
<File
|
|
1016
|
+
RelativePath="..\..\masmx64\inffas8664.c"
|
|
1017
|
+
>
|
|
1018
|
+
<FileConfiguration
|
|
1019
|
+
Name="Debug|Win32"
|
|
1020
|
+
ExcludedFromBuild="true"
|
|
1021
|
+
>
|
|
1022
|
+
<Tool
|
|
1023
|
+
Name="VCCLCompilerTool"
|
|
1024
|
+
/>
|
|
1025
|
+
</FileConfiguration>
|
|
1026
|
+
<FileConfiguration
|
|
1027
|
+
Name="Debug|Itanium"
|
|
1028
|
+
ExcludedFromBuild="true"
|
|
1029
|
+
>
|
|
1030
|
+
<Tool
|
|
1031
|
+
Name="VCCLCompilerTool"
|
|
1032
|
+
/>
|
|
1033
|
+
</FileConfiguration>
|
|
1034
|
+
<FileConfiguration
|
|
1035
|
+
Name="ReleaseWithoutAsm|Win32"
|
|
1036
|
+
ExcludedFromBuild="true"
|
|
1037
|
+
>
|
|
1038
|
+
<Tool
|
|
1039
|
+
Name="VCCLCompilerTool"
|
|
1040
|
+
/>
|
|
1041
|
+
</FileConfiguration>
|
|
1042
|
+
<FileConfiguration
|
|
1043
|
+
Name="ReleaseWithoutAsm|Itanium"
|
|
1044
|
+
ExcludedFromBuild="true"
|
|
1045
|
+
>
|
|
1046
|
+
<Tool
|
|
1047
|
+
Name="VCCLCompilerTool"
|
|
1048
|
+
/>
|
|
1049
|
+
</FileConfiguration>
|
|
1050
|
+
<FileConfiguration
|
|
1051
|
+
Name="Release|Win32"
|
|
1052
|
+
ExcludedFromBuild="true"
|
|
1053
|
+
>
|
|
1054
|
+
<Tool
|
|
1055
|
+
Name="VCCLCompilerTool"
|
|
1056
|
+
/>
|
|
1057
|
+
</FileConfiguration>
|
|
1058
|
+
<FileConfiguration
|
|
1059
|
+
Name="Release|Itanium"
|
|
1060
|
+
ExcludedFromBuild="true"
|
|
1061
|
+
>
|
|
1062
|
+
<Tool
|
|
1063
|
+
Name="VCCLCompilerTool"
|
|
1064
|
+
/>
|
|
1065
|
+
</FileConfiguration>
|
|
1066
|
+
</File>
|
|
1067
|
+
<File
|
|
1068
|
+
RelativePath="..\..\..\inffast.c"
|
|
1069
|
+
>
|
|
1070
|
+
</File>
|
|
1071
|
+
<File
|
|
1072
|
+
RelativePath="..\..\..\inflate.c"
|
|
1073
|
+
>
|
|
1074
|
+
</File>
|
|
1075
|
+
<File
|
|
1076
|
+
RelativePath="..\..\..\inftrees.c"
|
|
1077
|
+
>
|
|
1078
|
+
</File>
|
|
1079
|
+
<File
|
|
1080
|
+
RelativePath="..\..\minizip\ioapi.c"
|
|
1081
|
+
>
|
|
1082
|
+
</File>
|
|
1083
|
+
<File
|
|
1084
|
+
RelativePath="..\..\minizip\iowin32.c"
|
|
1085
|
+
>
|
|
1086
|
+
</File>
|
|
1087
|
+
<File
|
|
1088
|
+
RelativePath="..\..\..\trees.c"
|
|
1089
|
+
>
|
|
1090
|
+
</File>
|
|
1091
|
+
<File
|
|
1092
|
+
RelativePath="..\..\..\uncompr.c"
|
|
1093
|
+
>
|
|
1094
|
+
</File>
|
|
1095
|
+
<File
|
|
1096
|
+
RelativePath="..\..\minizip\unzip.c"
|
|
1097
|
+
>
|
|
1098
|
+
<FileConfiguration
|
|
1099
|
+
Name="Release|Win32"
|
|
1100
|
+
>
|
|
1101
|
+
<Tool
|
|
1102
|
+
Name="VCCLCompilerTool"
|
|
1103
|
+
AdditionalIncludeDirectories=""
|
|
1104
|
+
PreprocessorDefinitions="ZLIB_INTERNAL"
|
|
1105
|
+
/>
|
|
1106
|
+
</FileConfiguration>
|
|
1107
|
+
<FileConfiguration
|
|
1108
|
+
Name="Release|x64"
|
|
1109
|
+
>
|
|
1110
|
+
<Tool
|
|
1111
|
+
Name="VCCLCompilerTool"
|
|
1112
|
+
AdditionalIncludeDirectories=""
|
|
1113
|
+
PreprocessorDefinitions="ZLIB_INTERNAL"
|
|
1114
|
+
/>
|
|
1115
|
+
</FileConfiguration>
|
|
1116
|
+
<FileConfiguration
|
|
1117
|
+
Name="Release|Itanium"
|
|
1118
|
+
>
|
|
1119
|
+
<Tool
|
|
1120
|
+
Name="VCCLCompilerTool"
|
|
1121
|
+
AdditionalIncludeDirectories=""
|
|
1122
|
+
PreprocessorDefinitions="ZLIB_INTERNAL"
|
|
1123
|
+
/>
|
|
1124
|
+
</FileConfiguration>
|
|
1125
|
+
</File>
|
|
1126
|
+
<File
|
|
1127
|
+
RelativePath="..\..\minizip\zip.c"
|
|
1128
|
+
>
|
|
1129
|
+
<FileConfiguration
|
|
1130
|
+
Name="Release|Win32"
|
|
1131
|
+
>
|
|
1132
|
+
<Tool
|
|
1133
|
+
Name="VCCLCompilerTool"
|
|
1134
|
+
AdditionalIncludeDirectories=""
|
|
1135
|
+
PreprocessorDefinitions="ZLIB_INTERNAL"
|
|
1136
|
+
/>
|
|
1137
|
+
</FileConfiguration>
|
|
1138
|
+
<FileConfiguration
|
|
1139
|
+
Name="Release|x64"
|
|
1140
|
+
>
|
|
1141
|
+
<Tool
|
|
1142
|
+
Name="VCCLCompilerTool"
|
|
1143
|
+
AdditionalIncludeDirectories=""
|
|
1144
|
+
PreprocessorDefinitions="ZLIB_INTERNAL"
|
|
1145
|
+
/>
|
|
1146
|
+
</FileConfiguration>
|
|
1147
|
+
<FileConfiguration
|
|
1148
|
+
Name="Release|Itanium"
|
|
1149
|
+
>
|
|
1150
|
+
<Tool
|
|
1151
|
+
Name="VCCLCompilerTool"
|
|
1152
|
+
AdditionalIncludeDirectories=""
|
|
1153
|
+
PreprocessorDefinitions="ZLIB_INTERNAL"
|
|
1154
|
+
/>
|
|
1155
|
+
</FileConfiguration>
|
|
1156
|
+
</File>
|
|
1157
|
+
<File
|
|
1158
|
+
RelativePath=".\zlib.rc"
|
|
1159
|
+
>
|
|
1160
|
+
</File>
|
|
1161
|
+
<File
|
|
1162
|
+
RelativePath=".\zlibvc.def"
|
|
1163
|
+
>
|
|
1164
|
+
</File>
|
|
1165
|
+
<File
|
|
1166
|
+
RelativePath="..\..\..\zutil.c"
|
|
1167
|
+
>
|
|
1168
|
+
</File>
|
|
1169
|
+
</Filter>
|
|
1170
|
+
<Filter
|
|
1171
|
+
Name="Header Files"
|
|
1172
|
+
Filter="h;hpp;hxx;hm;inl;fi;fd"
|
|
1173
|
+
>
|
|
1174
|
+
<File
|
|
1175
|
+
RelativePath="..\..\..\deflate.h"
|
|
1176
|
+
>
|
|
1177
|
+
</File>
|
|
1178
|
+
<File
|
|
1179
|
+
RelativePath="..\..\..\infblock.h"
|
|
1180
|
+
>
|
|
1181
|
+
</File>
|
|
1182
|
+
<File
|
|
1183
|
+
RelativePath="..\..\..\infcodes.h"
|
|
1184
|
+
>
|
|
1185
|
+
</File>
|
|
1186
|
+
<File
|
|
1187
|
+
RelativePath="..\..\..\inffast.h"
|
|
1188
|
+
>
|
|
1189
|
+
</File>
|
|
1190
|
+
<File
|
|
1191
|
+
RelativePath="..\..\..\inftrees.h"
|
|
1192
|
+
>
|
|
1193
|
+
</File>
|
|
1194
|
+
<File
|
|
1195
|
+
RelativePath="..\..\..\infutil.h"
|
|
1196
|
+
>
|
|
1197
|
+
</File>
|
|
1198
|
+
<File
|
|
1199
|
+
RelativePath="..\..\..\zconf.h"
|
|
1200
|
+
>
|
|
1201
|
+
</File>
|
|
1202
|
+
<File
|
|
1203
|
+
RelativePath="..\..\..\zlib.h"
|
|
1204
|
+
>
|
|
1205
|
+
</File>
|
|
1206
|
+
<File
|
|
1207
|
+
RelativePath="..\..\..\zutil.h"
|
|
1208
|
+
>
|
|
1209
|
+
</File>
|
|
1210
|
+
</Filter>
|
|
1211
|
+
<Filter
|
|
1212
|
+
Name="Resource Files"
|
|
1213
|
+
Filter="ico;cur;bmp;dlg;rc2;rct;bin;cnt;rtf;gif;jpg;jpeg;jpe"
|
|
1214
|
+
>
|
|
1215
|
+
</Filter>
|
|
1216
|
+
</Files>
|
|
1217
|
+
<Globals>
|
|
1218
|
+
</Globals>
|
|
1219
|
+
</VisualStudioProject>
|