From 777434a9ceb51c3b8565e7896495709c40d0473d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Tue, 25 Mar 2014 23:27:00 +0100 Subject: [PATCH] added VS project files, minor fixes --- SevenZip/SevenZip.progen | 16 + SevenZip/SevenZip_CE_vs90.sln | 37 ++ SevenZip/SevenZip_CE_vs90.vcproj | 566 ++++++++++++++++++ SevenZip/SevenZip_WEC2013_vs110.sln | 37 ++ SevenZip/SevenZip_WEC2013_vs110.vcxproj | 69 +++ .../SevenZip_WEC2013_vs110.vcxproj.filters | 141 +++++ SevenZip/SevenZip_vs100.sln | 37 ++ SevenZip/SevenZip_vs100.vcxproj | 319 ++++++++++ SevenZip/SevenZip_vs100.vcxproj.filters | 141 +++++ SevenZip/SevenZip_vs110.sln | 37 ++ SevenZip/SevenZip_vs110.vcxproj | 340 +++++++++++ SevenZip/SevenZip_vs110.vcxproj.filters | 141 +++++ SevenZip/SevenZip_vs120.sln | 37 ++ SevenZip/SevenZip_vs120.vcxproj | 340 +++++++++++ SevenZip/SevenZip_vs120.vcxproj.filters | 141 +++++ SevenZip/SevenZip_vs71.sln | 33 + SevenZip/SevenZip_vs71.vcproj | 498 +++++++++++++++ SevenZip/SevenZip_vs80.sln | 37 ++ SevenZip/SevenZip_vs80.vcproj | 519 ++++++++++++++++ SevenZip/SevenZip_vs90.sln | 37 ++ SevenZip/SevenZip_vs90.vcproj | 518 ++++++++++++++++ SevenZip/SevenZip_x64_vs100.sln | 37 ++ SevenZip/SevenZip_x64_vs100.vcxproj | 317 ++++++++++ SevenZip/SevenZip_x64_vs100.vcxproj.filters | 141 +++++ SevenZip/SevenZip_x64_vs110.sln | 37 ++ SevenZip/SevenZip_x64_vs110.vcxproj | 339 +++++++++++ SevenZip/SevenZip_x64_vs110.vcxproj.filters | 141 +++++ SevenZip/SevenZip_x64_vs120.sln | 37 ++ SevenZip/SevenZip_x64_vs120.vcxproj | 339 +++++++++++ SevenZip/SevenZip_x64_vs120.vcxproj.filters | 141 +++++ SevenZip/SevenZip_x64_vs90.sln | 37 ++ SevenZip/SevenZip_x64_vs90.vcproj | 523 ++++++++++++++++ SevenZip/dependencies | 3 + SevenZip/include/Poco/SevenZip/Archive.h | 6 + SevenZip/samples/samples.progen | 5 + SevenZip/samples/samples_CE_vs90.sln | 37 ++ SevenZip/samples/samples_WEC2013_vs110.sln | 37 ++ SevenZip/samples/samples_vs100.sln | 37 ++ SevenZip/samples/samples_vs110.sln | 37 ++ SevenZip/samples/samples_vs120.sln | 37 ++ SevenZip/samples/samples_vs71.sln | 33 + SevenZip/samples/samples_vs80.sln | 37 ++ SevenZip/samples/samples_vs90.sln | 37 ++ SevenZip/samples/samples_x64_vs100.sln | 37 ++ SevenZip/samples/samples_x64_vs110.sln | 37 ++ SevenZip/samples/samples_x64_vs120.sln | 37 ++ SevenZip/samples/samples_x64_vs90.sln | 37 ++ SevenZip/samples/un7zip/src/un7zip.cpp | 4 +- SevenZip/samples/un7zip/un7zip.progen | 10 + SevenZip/samples/un7zip/un7zip_CE_vs90.vcproj | 468 +++++++++++++++ .../un7zip/un7zip_WEC2013_vs110.vcxproj | 32 + .../un7zip_WEC2013_vs110.vcxproj.filters | 16 + SevenZip/samples/un7zip/un7zip_vs100.vcxproj | 299 +++++++++ .../un7zip/un7zip_vs100.vcxproj.filters | 16 + SevenZip/samples/un7zip/un7zip_vs110.vcxproj | 315 ++++++++++ .../un7zip/un7zip_vs110.vcxproj.filters | 16 + SevenZip/samples/un7zip/un7zip_vs120.vcxproj | 315 ++++++++++ .../un7zip/un7zip_vs120.vcxproj.filters | 16 + SevenZip/samples/un7zip/un7zip_vs71.vcproj | 395 ++++++++++++ SevenZip/samples/un7zip/un7zip_vs80.vcproj | 435 ++++++++++++++ SevenZip/samples/un7zip/un7zip_vs90.sln | 32 + SevenZip/samples/un7zip/un7zip_vs90.vcproj | 435 ++++++++++++++ .../samples/un7zip/un7zip_x64_vs100.vcxproj | 299 +++++++++ .../un7zip/un7zip_x64_vs100.vcxproj.filters | 16 + .../samples/un7zip/un7zip_x64_vs110.vcxproj | 315 ++++++++++ .../un7zip/un7zip_x64_vs110.vcxproj.filters | 16 + .../samples/un7zip/un7zip_x64_vs120.vcxproj | 315 ++++++++++ .../un7zip/un7zip_x64_vs120.vcxproj.filters | 16 + .../samples/un7zip/un7zip_x64_vs90.vcproj | 435 ++++++++++++++ 69 files changed, 10798 insertions(+), 2 deletions(-) create mode 100644 SevenZip/SevenZip.progen create mode 100644 SevenZip/SevenZip_CE_vs90.sln create mode 100644 SevenZip/SevenZip_CE_vs90.vcproj create mode 100644 SevenZip/SevenZip_WEC2013_vs110.sln create mode 100644 SevenZip/SevenZip_WEC2013_vs110.vcxproj create mode 100644 SevenZip/SevenZip_WEC2013_vs110.vcxproj.filters create mode 100644 SevenZip/SevenZip_vs100.sln create mode 100644 SevenZip/SevenZip_vs100.vcxproj create mode 100644 SevenZip/SevenZip_vs100.vcxproj.filters create mode 100644 SevenZip/SevenZip_vs110.sln create mode 100644 SevenZip/SevenZip_vs110.vcxproj create mode 100644 SevenZip/SevenZip_vs110.vcxproj.filters create mode 100644 SevenZip/SevenZip_vs120.sln create mode 100644 SevenZip/SevenZip_vs120.vcxproj create mode 100644 SevenZip/SevenZip_vs120.vcxproj.filters create mode 100644 SevenZip/SevenZip_vs71.sln create mode 100644 SevenZip/SevenZip_vs71.vcproj create mode 100644 SevenZip/SevenZip_vs80.sln create mode 100644 SevenZip/SevenZip_vs80.vcproj create mode 100644 SevenZip/SevenZip_vs90.sln create mode 100644 SevenZip/SevenZip_vs90.vcproj create mode 100644 SevenZip/SevenZip_x64_vs100.sln create mode 100644 SevenZip/SevenZip_x64_vs100.vcxproj create mode 100644 SevenZip/SevenZip_x64_vs100.vcxproj.filters create mode 100644 SevenZip/SevenZip_x64_vs110.sln create mode 100644 SevenZip/SevenZip_x64_vs110.vcxproj create mode 100644 SevenZip/SevenZip_x64_vs110.vcxproj.filters create mode 100644 SevenZip/SevenZip_x64_vs120.sln create mode 100644 SevenZip/SevenZip_x64_vs120.vcxproj create mode 100644 SevenZip/SevenZip_x64_vs120.vcxproj.filters create mode 100644 SevenZip/SevenZip_x64_vs90.sln create mode 100644 SevenZip/SevenZip_x64_vs90.vcproj create mode 100644 SevenZip/dependencies create mode 100644 SevenZip/samples/samples.progen create mode 100644 SevenZip/samples/samples_CE_vs90.sln create mode 100644 SevenZip/samples/samples_WEC2013_vs110.sln create mode 100644 SevenZip/samples/samples_vs100.sln create mode 100644 SevenZip/samples/samples_vs110.sln create mode 100644 SevenZip/samples/samples_vs120.sln create mode 100644 SevenZip/samples/samples_vs71.sln create mode 100644 SevenZip/samples/samples_vs80.sln create mode 100644 SevenZip/samples/samples_vs90.sln create mode 100644 SevenZip/samples/samples_x64_vs100.sln create mode 100644 SevenZip/samples/samples_x64_vs110.sln create mode 100644 SevenZip/samples/samples_x64_vs120.sln create mode 100644 SevenZip/samples/samples_x64_vs90.sln create mode 100644 SevenZip/samples/un7zip/un7zip.progen create mode 100644 SevenZip/samples/un7zip/un7zip_CE_vs90.vcproj create mode 100644 SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj create mode 100644 SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj.filters create mode 100644 SevenZip/samples/un7zip/un7zip_vs100.vcxproj create mode 100644 SevenZip/samples/un7zip/un7zip_vs100.vcxproj.filters create mode 100644 SevenZip/samples/un7zip/un7zip_vs110.vcxproj create mode 100644 SevenZip/samples/un7zip/un7zip_vs110.vcxproj.filters create mode 100644 SevenZip/samples/un7zip/un7zip_vs120.vcxproj create mode 100644 SevenZip/samples/un7zip/un7zip_vs120.vcxproj.filters create mode 100644 SevenZip/samples/un7zip/un7zip_vs71.vcproj create mode 100644 SevenZip/samples/un7zip/un7zip_vs80.vcproj create mode 100644 SevenZip/samples/un7zip/un7zip_vs90.sln create mode 100644 SevenZip/samples/un7zip/un7zip_vs90.vcproj create mode 100644 SevenZip/samples/un7zip/un7zip_x64_vs100.vcxproj create mode 100644 SevenZip/samples/un7zip/un7zip_x64_vs100.vcxproj.filters create mode 100644 SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj create mode 100644 SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj.filters create mode 100644 SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj create mode 100644 SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj.filters create mode 100644 SevenZip/samples/un7zip/un7zip_x64_vs90.vcproj diff --git a/SevenZip/SevenZip.progen b/SevenZip/SevenZip.progen new file mode 100644 index 000000000..7ea72b70a --- /dev/null +++ b/SevenZip/SevenZip.progen @@ -0,0 +1,16 @@ +vc.project.guid = BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D +vc.project.name = SevenZip +vc.project.target = Poco${vc.project.name} +vc.project.type = library +vc.project.pocobase = .. +vc.project.outdir = ${vc.project.pocobase} +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\Foundation\\include +vc.project.compiler.defines = +vc.project.compiler.defines.shared = ${vc.project.name}_EXPORTS +vc.project.compiler.defines.debug_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.defines.release_shared = ${vc.project.compiler.defines.shared} +vc.project.compiler.disableWarnings = 4244;4267 +vc.solution.create = true diff --git a/SevenZip/SevenZip_CE_vs90.sln b/SevenZip/SevenZip_CE_vs90.sln new file mode 100644 index 000000000..7d5fe692f --- /dev/null +++ b/SevenZip/SevenZip_CE_vs90.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SevenZip", "SevenZip_CE_vs90.vcproj", "{BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|Digi JumpStart (ARMV4I) = debug_shared|Digi JumpStart (ARMV4I) + release_shared|Digi JumpStart (ARMV4I) = release_shared|Digi JumpStart (ARMV4I) + debug_static_mt|Digi JumpStart (ARMV4I) = debug_static_mt|Digi JumpStart (ARMV4I) + release_static_mt|Digi JumpStart (ARMV4I) = release_static_mt|Digi JumpStart (ARMV4I) + debug_static_md|Digi JumpStart (ARMV4I) = debug_static_md|Digi JumpStart (ARMV4I) + release_static_md|Digi JumpStart (ARMV4I) = release_static_md|Digi JumpStart (ARMV4I) + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Digi JumpStart (ARMV4I).ActiveCfg = debug_shared|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Digi JumpStart (ARMV4I).Build.0 = debug_shared|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Digi JumpStart (ARMV4I).Deploy.0 = debug_shared|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Digi JumpStart (ARMV4I).ActiveCfg = release_shared|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Digi JumpStart (ARMV4I).Build.0 = release_shared|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Digi JumpStart (ARMV4I).Deploy.0 = release_shared|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Digi JumpStart (ARMV4I).ActiveCfg = debug_static_mt|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Digi JumpStart (ARMV4I).Build.0 = debug_static_mt|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Digi JumpStart (ARMV4I).Deploy.0 = debug_static_mt|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Digi JumpStart (ARMV4I).ActiveCfg = release_static_mt|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Digi JumpStart (ARMV4I).Build.0 = release_static_mt|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Digi JumpStart (ARMV4I).Deploy.0 = release_static_mt|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Digi JumpStart (ARMV4I).ActiveCfg = debug_static_md|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Digi JumpStart (ARMV4I).Build.0 = debug_static_md|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Digi JumpStart (ARMV4I).Deploy.0 = debug_static_md|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Digi JumpStart (ARMV4I).ActiveCfg = release_static_md|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Digi JumpStart (ARMV4I).Build.0 = release_static_md|Digi JumpStart (ARMV4I) + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Digi JumpStart (ARMV4I).Deploy.0 = release_static_md|Digi JumpStart (ARMV4I) + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/SevenZip_CE_vs90.vcproj b/SevenZip/SevenZip_CE_vs90.vcproj new file mode 100644 index 000000000..ac58f7720 --- /dev/null +++ b/SevenZip/SevenZip_CE_vs90.vcproj @@ -0,0 +1,566 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SevenZip/SevenZip_WEC2013_vs110.sln b/SevenZip/SevenZip_WEC2013_vs110.sln new file mode 100644 index 000000000..cd2a050a2 --- /dev/null +++ b/SevenZip/SevenZip_WEC2013_vs110.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SevenZip", "SevenZip_WEC2013_vs110.vcxproj", "{BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 + release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 + debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 + release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 + debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 + release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/SevenZip_WEC2013_vs110.vcxproj b/SevenZip/SevenZip_WEC2013_vs110.vcxproj new file mode 100644 index 000000000..034f92c2d --- /dev/null +++ b/SevenZip/SevenZip_WEC2013_vs110.vcxproj @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + SevenZip + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D} + en-US + 11.0 + true + SDK_AM335X_SK_WEC2013 + CE800 + + + + + + + <_ProjectFileVersion>11.0.61030.0 + PocoSevenZipd + PocoSevenZipmdd + PocoSevenZipmtd + PocoSevenZip + PocoSevenZipmd + PocoSevenZipmt + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SevenZip/SevenZip_WEC2013_vs110.vcxproj.filters b/SevenZip/SevenZip_WEC2013_vs110.vcxproj.filters new file mode 100644 index 000000000..5b0fdd0fc --- /dev/null +++ b/SevenZip/SevenZip_WEC2013_vs110.vcxproj.filters @@ -0,0 +1,141 @@ + + + + + {88f347b4-6e07-443a-8fd3-094763e9ac9e} + + + {572a2575-8b6e-4e4d-8ba1-2ad18152d78a} + + + {a9bff62c-1833-4b54-b1a1-3f29d97146b8} + + + {de698b45-d55a-4d3f-91a2-5d66cf2633b4} + + + {97e46837-030c-4913-8d42-35bb3a394a8c} + + + {72f5279f-55a3-4103-a84c-ab87eacf1435} + + + {a0f086a8-428e-432b-8690-36e12cf29483} + + + {111bf822-127a-49ce-b64f-80b62ed898f7} + + + {b919a5ff-cd52-4e77-8c39-dba143f67103} + + + + + Archive\Header Files + + + Archive\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + SevenZip\Header Files + + + + + Archive\Source Files + + + Archive\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + + + + \ No newline at end of file diff --git a/SevenZip/SevenZip_vs100.sln b/SevenZip/SevenZip_vs100.sln new file mode 100644 index 000000000..44a22affd --- /dev/null +++ b/SevenZip/SevenZip_vs100.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SevenZip", "SevenZip_vs100.vcxproj", "{BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|Win32 = debug_shared|Win32 + release_shared|Win32 = release_shared|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 + release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Win32.ActiveCfg = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Win32.Build.0 = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/SevenZip_vs100.vcxproj b/SevenZip/SevenZip_vs100.vcxproj new file mode 100644 index 000000000..42bf3ecb5 --- /dev/null +++ b/SevenZip/SevenZip_vs100.vcxproj @@ -0,0 +1,319 @@ + + + + + debug_shared + Win32 + + + debug_static_md + Win32 + + + debug_static_mt + Win32 + + + release_shared + Win32 + + + release_static_md + Win32 + + + release_static_mt + Win32 + + + + SevenZip + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D} + SevenZip + Win32Proj + + + + StaticLibrary + MultiByte + + + StaticLibrary + MultiByte + + + StaticLibrary + MultiByte + + + StaticLibrary + MultiByte + + + DynamicLibrary + MultiByte + + + DynamicLibrary + MultiByte + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + ..\bin\ + obj\$(Configuration)\ + true + ..\bin\ + obj\$(Configuration)\ + false + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + ..\lib\ + obj\$(Configuration)\ + PocoSevenZipd + PocoSevenZipmdd + PocoSevenZipmtd + PocoSevenZip + PocoSevenZipmd + PocoSevenZipmt + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;_USRDLL;SevenZip_EXPORTS;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + EditAndContinue + Default + 4244;4267;%(DisableSpecificWarnings) + + + %(AdditionalDependencies) + ..\bin\PocoSevenZipd.dll + true + true + ..\bin\PocoSevenZipd.pdb + ..\lib;%(AdditionalLibraryDirectories) + Console + ..\lib\PocoSevenZipd.lib + MachineX86 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;_USRDLL;SevenZip_EXPORTS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + %(AdditionalDependencies) + ..\bin\PocoSevenZip.dll + true + false + ..\lib;%(AdditionalLibraryDirectories) + Console + true + true + ..\lib\PocoSevenZip.lib + MachineX86 + + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebug + true + true + true + true + + ..\lib\PocoSevenZipmtd.pdb + Level3 + EditAndContinue + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib\PocoSevenZipmtd.lib + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreaded + false + true + true + true + + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib\PocoSevenZipmt.lib + + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + ..\lib\PocoSevenZipmdd.pdb + Level3 + EditAndContinue + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib\PocoSevenZipmdd.lib + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + ..\lib\PocoSevenZipmd.pdb + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + %(AdditionalDependencies) + ..\lib\PocoSevenZipmd.lib + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + true + true + + + + + diff --git a/SevenZip/SevenZip_vs100.vcxproj.filters b/SevenZip/SevenZip_vs100.vcxproj.filters new file mode 100644 index 000000000..b4a27bf85 --- /dev/null +++ b/SevenZip/SevenZip_vs100.vcxproj.filters @@ -0,0 +1,141 @@ + + + + + {c394c8cd-d896-4af1-952d-783a536cdaa1} + + + {a7b29a14-4292-4945-bca9-713e02e21fd5} + + + {11f20fad-95b6-4629-9fe9-5a3cb49e541f} + + + {6697ff82-bc58-408b-8f15-07e013aa6f96} + + + {338a0879-99b5-4805-98cc-9927c34348a7} + + + {6ec3ce11-1713-4037-9c99-8582b0e12276} + + + {859bcb12-e7bd-4899-980e-8c9f15d9c031} + + + {38bb27b5-c2d5-4c81-b5a4-8e95a62ceda1} + + + {8bf160ee-73f5-4458-a422-35e9fc0a3e23} + + + + + Archive\Header Files + + + Archive\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + SevenZip\Header Files + + + + + Archive\Source Files + + + Archive\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + + + + \ No newline at end of file diff --git a/SevenZip/SevenZip_vs110.sln b/SevenZip/SevenZip_vs110.sln new file mode 100644 index 000000000..1a538b08d --- /dev/null +++ b/SevenZip/SevenZip_vs110.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SevenZip", "SevenZip_vs110.vcxproj", "{BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|Win32 = debug_shared|Win32 + release_shared|Win32 = release_shared|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 + release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Win32.ActiveCfg = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Win32.Build.0 = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/SevenZip_vs110.vcxproj b/SevenZip/SevenZip_vs110.vcxproj new file mode 100644 index 000000000..c7e6bec98 --- /dev/null +++ b/SevenZip/SevenZip_vs110.vcxproj @@ -0,0 +1,340 @@ + + + + + debug_shared + Win32 + + + debug_static_md + Win32 + + + debug_static_mt + Win32 + + + release_shared + Win32 + + + release_static_md + Win32 + + + release_static_mt + Win32 + + + + SevenZip + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D} + SevenZip + Win32Proj + + + + StaticLibrary + v110 + MultiByte + v110 + + + StaticLibrary + v110 + MultiByte + v110 + + + StaticLibrary + v110 + MultiByte + v110 + + + StaticLibrary + v110 + MultiByte + v110 + + + DynamicLibrary + v110 + MultiByte + v110 + + + DynamicLibrary + v110 + MultiByte + v110 + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>11.0.61030.0 + PocoSevenZipd + PocoSevenZipmdd + PocoSevenZipmtd + PocoSevenZip + PocoSevenZipmd + PocoSevenZipmt + + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;_USRDLL;SevenZip_EXPORTS;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + EditAndContinue + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\bin\PocoSevenZipd.dll + true + true + ..\bin\PocoSevenZipd.pdb + ..\lib;%(AdditionalLibraryDirectories) + Console + ..\lib\PocoSevenZipd.lib + MachineX86 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;_USRDLL;SevenZip_EXPORTS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\bin\PocoSevenZip.dll + true + false + ..\lib;%(AdditionalLibraryDirectories) + Console + true + true + ..\lib\PocoSevenZip.lib + MachineX86 + + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebug + true + true + true + true + + ..\lib\PocoSevenZipmtd.pdb + Level3 + EditAndContinue + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib\PocoSevenZipmtd.lib + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreaded + false + true + true + true + + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib\PocoSevenZipmt.lib + + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + ..\lib\PocoSevenZipmdd.pdb + Level3 + EditAndContinue + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib\PocoSevenZipmdd.lib + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + ..\lib\PocoSevenZipmd.pdb + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib\PocoSevenZipmd.lib + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + true + true + + + + + diff --git a/SevenZip/SevenZip_vs110.vcxproj.filters b/SevenZip/SevenZip_vs110.vcxproj.filters new file mode 100644 index 000000000..365f01710 --- /dev/null +++ b/SevenZip/SevenZip_vs110.vcxproj.filters @@ -0,0 +1,141 @@ + + + + + {5eb804fd-0811-48c2-a7a7-a74b81785e24} + + + {d8cd646f-3bd2-44c2-a01f-bdb60c581331} + + + {d3c2efc4-baf5-4cf6-a7d2-52d424cea902} + + + {ad200a41-28d5-483c-bc37-8babfb0c7a14} + + + {41099b20-80c3-4c30-940a-0ae03b859324} + + + {238bfbcd-3b6f-4068-bb9b-7ea6228afcf0} + + + {e8e78b28-e848-4780-883d-82a250141c1c} + + + {bf7f54e6-114b-4068-baa7-263f63ad91e3} + + + {5e1fab1e-e365-4108-9890-37ef49415596} + + + + + Archive\Header Files + + + Archive\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + SevenZip\Header Files + + + + + Archive\Source Files + + + Archive\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + + + + \ No newline at end of file diff --git a/SevenZip/SevenZip_vs120.sln b/SevenZip/SevenZip_vs120.sln new file mode 100644 index 000000000..8b94d4354 --- /dev/null +++ b/SevenZip/SevenZip_vs120.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SevenZip", "SevenZip_vs120.vcxproj", "{BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|Win32 = debug_shared|Win32 + release_shared|Win32 = release_shared|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 + release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Win32.ActiveCfg = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Win32.Build.0 = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/SevenZip_vs120.vcxproj b/SevenZip/SevenZip_vs120.vcxproj new file mode 100644 index 000000000..f5cf69a52 --- /dev/null +++ b/SevenZip/SevenZip_vs120.vcxproj @@ -0,0 +1,340 @@ + + + + + debug_shared + Win32 + + + debug_static_md + Win32 + + + debug_static_mt + Win32 + + + release_shared + Win32 + + + release_static_md + Win32 + + + release_static_mt + Win32 + + + + SevenZip + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D} + SevenZip + Win32Proj + + + + StaticLibrary + v120 + MultiByte + v120 + + + StaticLibrary + v120 + MultiByte + v120 + + + StaticLibrary + v120 + MultiByte + v120 + + + StaticLibrary + v120 + MultiByte + v120 + + + DynamicLibrary + v120 + MultiByte + v120 + + + DynamicLibrary + v120 + MultiByte + v120 + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>12.0.21005.1 + PocoSevenZipd + PocoSevenZipmdd + PocoSevenZipmtd + PocoSevenZip + PocoSevenZipmd + PocoSevenZipmt + + + ..\bin\ + obj\$(Configuration)\ + true + + + ..\bin\ + obj\$(Configuration)\ + false + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + ..\lib\ + obj\$(Configuration)\ + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;_USRDLL;SevenZip_EXPORTS;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + EditAndContinue + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\bin\PocoSevenZipd.dll + true + true + ..\bin\PocoSevenZipd.pdb + ..\lib;%(AdditionalLibraryDirectories) + Console + ..\lib\PocoSevenZipd.lib + MachineX86 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;_USRDLL;SevenZip_EXPORTS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\bin\PocoSevenZip.dll + true + false + ..\lib;%(AdditionalLibraryDirectories) + Console + true + true + ..\lib\PocoSevenZip.lib + MachineX86 + + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebug + true + true + true + true + + ..\lib\PocoSevenZipmtd.pdb + Level3 + EditAndContinue + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib\PocoSevenZipmtd.lib + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreaded + false + true + true + true + + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib\PocoSevenZipmt.lib + + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + ..\lib\PocoSevenZipmdd.pdb + Level3 + EditAndContinue + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib\PocoSevenZipmdd.lib + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + ..\lib\PocoSevenZipmd.pdb + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib\PocoSevenZipmd.lib + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + true + true + + + + + diff --git a/SevenZip/SevenZip_vs120.vcxproj.filters b/SevenZip/SevenZip_vs120.vcxproj.filters new file mode 100644 index 000000000..36ce3de17 --- /dev/null +++ b/SevenZip/SevenZip_vs120.vcxproj.filters @@ -0,0 +1,141 @@ + + + + + {3bb5ed73-1b44-40f2-8a63-bbadc43c20a5} + + + {cba1dc79-7628-4ab6-926d-4fe74658c889} + + + {96af9a72-d0a4-49ea-9fd6-31e0e9afa659} + + + {1a903c52-41e5-48c1-8738-d40f327f2e3f} + + + {adaf4d5a-29ec-4a61-8359-b49e84509564} + + + {cc3b0ce8-02d9-4f5b-ac41-459746b92ad3} + + + {9469de9d-c276-4bc5-88be-95f80ad1bd37} + + + {800c6f1f-cc82-4f0f-9677-d4134ef3006c} + + + {79996b65-5ab4-4c51-95ab-a9dd6d38466b} + + + + + Archive\Header Files + + + Archive\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + SevenZip\Header Files + + + + + Archive\Source Files + + + Archive\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + + + + \ No newline at end of file diff --git a/SevenZip/SevenZip_vs71.sln b/SevenZip/SevenZip_vs71.sln new file mode 100644 index 000000000..a5cc4fbb1 --- /dev/null +++ b/SevenZip/SevenZip_vs71.sln @@ -0,0 +1,33 @@ +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SevenZip", "SevenZip_vs71.vcproj", "{BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + debug_shared = debug_shared + release_shared = release_shared + debug_static_mt = debug_static_mt + release_static_mt = release_static_mt + debug_static_md = debug_static_md + release_static_md = release_static_md + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared.ActiveCfg = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared.Build.0 = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared.ActiveCfg = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared.Build.0 = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt.ActiveCfg = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt.Build.0 = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt.ActiveCfg = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt.Build.0 = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md.ActiveCfg = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md.Build.0 = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md.ActiveCfg = release_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md.Build.0 = release_static_md|Win32 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/SevenZip/SevenZip_vs71.vcproj b/SevenZip/SevenZip_vs71.vcproj new file mode 100644 index 000000000..7a4230a78 --- /dev/null +++ b/SevenZip/SevenZip_vs71.vcproj @@ -0,0 +1,498 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SevenZip/SevenZip_vs80.sln b/SevenZip/SevenZip_vs80.sln new file mode 100644 index 000000000..eb6e1320c --- /dev/null +++ b/SevenZip/SevenZip_vs80.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SevenZip", "SevenZip_vs80.vcproj", "{BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|Win32 = debug_shared|Win32 + release_shared|Win32 = release_shared|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 + release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Win32.ActiveCfg = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Win32.Build.0 = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/SevenZip_vs80.vcproj b/SevenZip/SevenZip_vs80.vcproj new file mode 100644 index 000000000..4abc304ca --- /dev/null +++ b/SevenZip/SevenZip_vs80.vcproj @@ -0,0 +1,519 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SevenZip/SevenZip_vs90.sln b/SevenZip/SevenZip_vs90.sln new file mode 100644 index 000000000..925bb5651 --- /dev/null +++ b/SevenZip/SevenZip_vs90.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SevenZip", "SevenZip_vs90.vcproj", "{BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|Win32 = debug_shared|Win32 + release_shared|Win32 = release_shared|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 + release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Win32.ActiveCfg = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Win32.Build.0 = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/SevenZip_vs90.vcproj b/SevenZip/SevenZip_vs90.vcproj new file mode 100644 index 000000000..cf61f3a6e --- /dev/null +++ b/SevenZip/SevenZip_vs90.vcproj @@ -0,0 +1,518 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SevenZip/SevenZip_x64_vs100.sln b/SevenZip/SevenZip_x64_vs100.sln new file mode 100644 index 000000000..834cdfccd --- /dev/null +++ b/SevenZip/SevenZip_x64_vs100.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SevenZip", "SevenZip_x64_vs100.vcxproj", "{BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|x64 = debug_shared|x64 + release_shared|x64 = release_shared|x64 + debug_static_mt|x64 = debug_static_mt|x64 + release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|x64.ActiveCfg = debug_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|x64.Build.0 = debug_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|x64.Deploy.0 = debug_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|x64.ActiveCfg = release_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|x64.Build.0 = release_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|x64.Deploy.0 = release_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|x64.Build.0 = release_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|x64.Deploy.0 = release_static_md|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/SevenZip_x64_vs100.vcxproj b/SevenZip/SevenZip_x64_vs100.vcxproj new file mode 100644 index 000000000..32f16b121 --- /dev/null +++ b/SevenZip/SevenZip_x64_vs100.vcxproj @@ -0,0 +1,317 @@ + + + + + debug_shared + x64 + + + debug_static_md + x64 + + + debug_static_mt + x64 + + + release_shared + x64 + + + release_static_md + x64 + + + release_static_mt + x64 + + + + SevenZip + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D} + SevenZip + Win32Proj + + + + StaticLibrary + MultiByte + + + StaticLibrary + MultiByte + + + StaticLibrary + MultiByte + + + StaticLibrary + MultiByte + + + DynamicLibrary + MultiByte + + + DynamicLibrary + MultiByte + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + ..\bin64\ + obj64\$(Configuration)\ + true + ..\bin64\ + obj64\$(Configuration)\ + false + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + ..\lib64\ + obj64\$(Configuration)\ + PocoSevenZip64d + PocoSevenZipmdd + PocoSevenZipmtd + PocoSevenZip64 + PocoSevenZipmd + PocoSevenZipmt + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;_USRDLL;SevenZip_EXPORTS;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + ProgramDatabase + Default + 4244;4267;%(DisableSpecificWarnings) + + + %(AdditionalDependencies) + ..\bin64\PocoSevenZip64d.dll + true + true + ..\bin64\PocoSevenZip64d.pdb + ..\lib64;%(AdditionalLibraryDirectories) + Console + ..\lib64\PocoSevenZipd.lib + MachineX64 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;_USRDLL;SevenZip_EXPORTS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + %(AdditionalDependencies) + ..\bin64\PocoSevenZip64.dll + true + false + ..\lib64;%(AdditionalLibraryDirectories) + Console + true + true + ..\lib64\PocoSevenZip.lib + MachineX64 + + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebug + true + true + true + true + + ..\lib64\PocoSevenZipmtd.pdb + Level3 + ProgramDatabase + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib64\PocoSevenZipmtd.lib + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreaded + false + true + true + true + + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib64\PocoSevenZipmt.lib + + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + ..\lib64\PocoSevenZipmdd.pdb + Level3 + ProgramDatabase + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib64\PocoSevenZipmdd.lib + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib64\PocoSevenZipmd.lib + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + true + true + + + + + diff --git a/SevenZip/SevenZip_x64_vs100.vcxproj.filters b/SevenZip/SevenZip_x64_vs100.vcxproj.filters new file mode 100644 index 000000000..da4bf0dda --- /dev/null +++ b/SevenZip/SevenZip_x64_vs100.vcxproj.filters @@ -0,0 +1,141 @@ + + + + + {d6613904-ec91-4dd6-8933-00b33fdf12a4} + + + {53abb692-7bf5-4958-85c2-92870f40e7ae} + + + {b5f20620-6773-432c-8c30-55f01c1365b7} + + + {cecd4b72-ad5c-40ab-957a-3e9ece59f853} + + + {267c86b6-8ce6-4003-90c0-4a2f637802e7} + + + {aaec9809-4479-4e86-b6eb-74801bf6aedf} + + + {8dcb9c7a-43a8-4362-8b4d-629bc435e3d9} + + + {565cc784-5d62-463f-9125-b9b347c2246e} + + + {ca86a13a-6831-487d-873d-ae166fb6f7d6} + + + + + Archive\Header Files + + + Archive\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + SevenZip\Header Files + + + + + Archive\Source Files + + + Archive\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + + + + \ No newline at end of file diff --git a/SevenZip/SevenZip_x64_vs110.sln b/SevenZip/SevenZip_x64_vs110.sln new file mode 100644 index 000000000..1b2581c34 --- /dev/null +++ b/SevenZip/SevenZip_x64_vs110.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SevenZip", "SevenZip_x64_vs110.vcxproj", "{BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|x64 = debug_shared|x64 + release_shared|x64 = release_shared|x64 + debug_static_mt|x64 = debug_static_mt|x64 + release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|x64.ActiveCfg = debug_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|x64.Build.0 = debug_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|x64.Deploy.0 = debug_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|x64.ActiveCfg = release_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|x64.Build.0 = release_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|x64.Deploy.0 = release_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|x64.Build.0 = release_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|x64.Deploy.0 = release_static_md|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/SevenZip_x64_vs110.vcxproj b/SevenZip/SevenZip_x64_vs110.vcxproj new file mode 100644 index 000000000..13149e75a --- /dev/null +++ b/SevenZip/SevenZip_x64_vs110.vcxproj @@ -0,0 +1,339 @@ + + + + + debug_shared + x64 + + + debug_static_md + x64 + + + debug_static_mt + x64 + + + release_shared + x64 + + + release_static_md + x64 + + + release_static_mt + x64 + + + + SevenZip + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D} + SevenZip + Win32Proj + + + + StaticLibrary + v110 + MultiByte + v110 + + + StaticLibrary + v110 + MultiByte + v110 + + + StaticLibrary + v110 + MultiByte + v110 + + + StaticLibrary + v110 + MultiByte + v110 + + + DynamicLibrary + v110 + MultiByte + v110 + + + DynamicLibrary + v110 + MultiByte + v110 + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>11.0.61030.0 + PocoSevenZip64d + PocoSevenZipmdd + PocoSevenZipmtd + PocoSevenZip64 + PocoSevenZipmd + PocoSevenZipmt + + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;_USRDLL;SevenZip_EXPORTS;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + ProgramDatabase + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\bin64\PocoSevenZip64d.dll + true + true + ..\bin64\PocoSevenZip64d.pdb + ..\lib64;%(AdditionalLibraryDirectories) + Console + ..\lib64\PocoSevenZipd.lib + MachineX64 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;_USRDLL;SevenZip_EXPORTS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\bin64\PocoSevenZip64.dll + true + false + ..\lib64;%(AdditionalLibraryDirectories) + Console + true + true + ..\lib64\PocoSevenZip.lib + MachineX64 + + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebug + true + true + true + true + + ..\lib64\PocoSevenZipmtd.pdb + Level3 + ProgramDatabase + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib64\PocoSevenZipmtd.lib + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreaded + false + true + true + true + + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib64\PocoSevenZipmt.lib + + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + ..\lib64\PocoSevenZipmdd.pdb + Level3 + ProgramDatabase + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib64\PocoSevenZipmdd.lib + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib64\PocoSevenZipmd.lib + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + true + true + + + + + diff --git a/SevenZip/SevenZip_x64_vs110.vcxproj.filters b/SevenZip/SevenZip_x64_vs110.vcxproj.filters new file mode 100644 index 000000000..7687dec47 --- /dev/null +++ b/SevenZip/SevenZip_x64_vs110.vcxproj.filters @@ -0,0 +1,141 @@ + + + + + {4a1c9bea-8efc-4cc0-b0a4-fb9c8af1b63e} + + + {e67763b3-e377-455a-a9ed-6e02fe07464c} + + + {4258e001-f7d0-40ea-8df1-2ab3e0fe30a8} + + + {ea479ca2-9a4a-4189-b25e-e49ab085bce8} + + + {db588e23-ca04-4eb7-b7dd-2968def3dd08} + + + {e3384b69-19be-417b-be8b-3e240ff62538} + + + {707911c6-aea3-4bff-8561-2133d4d5efc5} + + + {12fd0731-f2b8-498b-abb8-14c3732f3773} + + + {070ce2de-2afe-44d8-9450-1465fbc0bf51} + + + + + Archive\Header Files + + + Archive\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + SevenZip\Header Files + + + + + Archive\Source Files + + + Archive\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + + + + \ No newline at end of file diff --git a/SevenZip/SevenZip_x64_vs120.sln b/SevenZip/SevenZip_x64_vs120.sln new file mode 100644 index 000000000..a8ff0131c --- /dev/null +++ b/SevenZip/SevenZip_x64_vs120.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SevenZip", "SevenZip_x64_vs120.vcxproj", "{BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|x64 = debug_shared|x64 + release_shared|x64 = release_shared|x64 + debug_static_mt|x64 = debug_static_mt|x64 + release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|x64.ActiveCfg = debug_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|x64.Build.0 = debug_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|x64.Deploy.0 = debug_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|x64.ActiveCfg = release_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|x64.Build.0 = release_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|x64.Deploy.0 = release_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|x64.Build.0 = release_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|x64.Deploy.0 = release_static_md|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/SevenZip_x64_vs120.vcxproj b/SevenZip/SevenZip_x64_vs120.vcxproj new file mode 100644 index 000000000..0b1b9edb3 --- /dev/null +++ b/SevenZip/SevenZip_x64_vs120.vcxproj @@ -0,0 +1,339 @@ + + + + + debug_shared + x64 + + + debug_static_md + x64 + + + debug_static_mt + x64 + + + release_shared + x64 + + + release_static_md + x64 + + + release_static_mt + x64 + + + + SevenZip + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D} + SevenZip + Win32Proj + + + + StaticLibrary + v120 + MultiByte + v120 + + + StaticLibrary + v120 + MultiByte + v120 + + + StaticLibrary + v120 + MultiByte + v120 + + + StaticLibrary + v120 + MultiByte + v120 + + + DynamicLibrary + v120 + MultiByte + v120 + + + DynamicLibrary + v120 + MultiByte + v120 + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>12.0.21005.1 + PocoSevenZip64d + PocoSevenZipmdd + PocoSevenZipmtd + PocoSevenZip64 + PocoSevenZipmd + PocoSevenZipmt + + + ..\bin64\ + obj64\$(Configuration)\ + true + + + ..\bin64\ + obj64\$(Configuration)\ + false + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + ..\lib64\ + obj64\$(Configuration)\ + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;_USRDLL;SevenZip_EXPORTS;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + ProgramDatabase + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\bin64\PocoSevenZip64d.dll + true + true + ..\bin64\PocoSevenZip64d.pdb + ..\lib64;%(AdditionalLibraryDirectories) + Console + ..\lib64\PocoSevenZipd.lib + MachineX64 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;_USRDLL;SevenZip_EXPORTS;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\bin64\PocoSevenZip64.dll + true + false + ..\lib64;%(AdditionalLibraryDirectories) + Console + true + true + ..\lib64\PocoSevenZip.lib + MachineX64 + + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebug + true + true + true + true + + ..\lib64\PocoSevenZipmtd.pdb + Level3 + ProgramDatabase + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib64\PocoSevenZipmtd.lib + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreaded + false + true + true + true + + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib64\PocoSevenZipmt.lib + + + + + Disabled + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + ..\lib64\PocoSevenZipmdd.pdb + Level3 + ProgramDatabase + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib64\PocoSevenZipmdd.lib + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\Foundation\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + 4244;4267;%(DisableSpecificWarnings) + + + ..\lib64\PocoSevenZipmd.lib + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + true + true + true + true + true + + + + + diff --git a/SevenZip/SevenZip_x64_vs120.vcxproj.filters b/SevenZip/SevenZip_x64_vs120.vcxproj.filters new file mode 100644 index 000000000..63d6e8262 --- /dev/null +++ b/SevenZip/SevenZip_x64_vs120.vcxproj.filters @@ -0,0 +1,141 @@ + + + + + {4305dacf-c55e-4e41-9fc3-edb4c088ade4} + + + {612b9d98-7e3f-44e0-b9e4-4680d809866c} + + + {bde7ee3c-2ac6-4f58-8fbc-3b119d8421d0} + + + {2dc799a1-fc80-4a73-8a67-766433b75133} + + + {35de3797-1542-4f80-a9aa-17e96ebe2b5a} + + + {edc8bbb0-8272-44a9-876c-93d57469d898} + + + {b9e72409-e964-4ce7-89a0-2d1bf40e1a36} + + + {2db99fd9-9671-4bfe-9faa-e276fe949dd8} + + + {b4e96f37-1d49-4e37-9cd2-2288f747a7b7} + + + + + Archive\Header Files + + + Archive\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + LZMA SDK\Header Files + + + SevenZip\Header Files + + + + + Archive\Source Files + + + Archive\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + LZMA SDK\Source Files + + + + + + \ No newline at end of file diff --git a/SevenZip/SevenZip_x64_vs90.sln b/SevenZip/SevenZip_x64_vs90.sln new file mode 100644 index 000000000..e3aadd3d0 --- /dev/null +++ b/SevenZip/SevenZip_x64_vs90.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SevenZip", "SevenZip_x64_vs90.vcproj", "{BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|x64 = debug_shared|x64 + release_shared|x64 = release_shared|x64 + debug_static_mt|x64 = debug_static_mt|x64 + release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|x64.ActiveCfg = debug_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|x64.Build.0 = debug_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_shared|x64.Deploy.0 = debug_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|x64.ActiveCfg = release_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|x64.Build.0 = release_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_shared|x64.Deploy.0 = release_shared|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|x64.Build.0 = release_static_md|x64 + {BBDBC9A3-15CD-495B-9B16-D03CFBFB8D2D}.release_static_md|x64.Deploy.0 = release_static_md|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/SevenZip_x64_vs90.vcproj b/SevenZip/SevenZip_x64_vs90.vcproj new file mode 100644 index 000000000..1bfe4c458 --- /dev/null +++ b/SevenZip/SevenZip_x64_vs90.vcproj @@ -0,0 +1,523 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SevenZip/dependencies b/SevenZip/dependencies new file mode 100644 index 000000000..c694b3733 --- /dev/null +++ b/SevenZip/dependencies @@ -0,0 +1,3 @@ +Foundation +Util +XML diff --git a/SevenZip/include/Poco/SevenZip/Archive.h b/SevenZip/include/Poco/SevenZip/Archive.h index af5b6597e..f559a00dc 100644 --- a/SevenZip/include/Poco/SevenZip/Archive.h +++ b/SevenZip/include/Poco/SevenZip/Archive.h @@ -109,10 +109,16 @@ public: /// /// Directories will be created as necessary. File attributes /// will not be restored. + /// + /// Progress and errors for single entries will be reported + /// via the extracted and failed events. std::string extract(const ArchiveEntry& entry, const std::string& destPath); /// Extracts a specific entry to the given path. /// + /// Directories will be created as necessary. File attributes + /// will not be restored. + /// /// Returns the absolute path of the extracted entry. private: diff --git a/SevenZip/samples/samples.progen b/SevenZip/samples/samples.progen new file mode 100644 index 000000000..631e5fefc --- /dev/null +++ b/SevenZip/samples/samples.progen @@ -0,0 +1,5 @@ +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.solution.create = true +vc.solution.include = \ + un7zip\\un7zip diff --git a/SevenZip/samples/samples_CE_vs90.sln b/SevenZip/samples/samples_CE_vs90.sln new file mode 100644 index 000000000..9a58e2cd3 --- /dev/null +++ b/SevenZip/samples/samples_CE_vs90.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "un7zip", "un7zip\un7zip_CE_vs90.vcproj", "{897F888B-0819-319B-A305-67BBE1625297}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|Digi JumpStart (ARMV4I) = debug_shared|Digi JumpStart (ARMV4I) + release_shared|Digi JumpStart (ARMV4I) = release_shared|Digi JumpStart (ARMV4I) + debug_static_mt|Digi JumpStart (ARMV4I) = debug_static_mt|Digi JumpStart (ARMV4I) + release_static_mt|Digi JumpStart (ARMV4I) = release_static_mt|Digi JumpStart (ARMV4I) + debug_static_md|Digi JumpStart (ARMV4I) = debug_static_md|Digi JumpStart (ARMV4I) + release_static_md|Digi JumpStart (ARMV4I) = release_static_md|Digi JumpStart (ARMV4I) + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Digi JumpStart (ARMV4I).ActiveCfg = debug_shared|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Digi JumpStart (ARMV4I).Build.0 = debug_shared|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Digi JumpStart (ARMV4I).Deploy.0 = debug_shared|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Digi JumpStart (ARMV4I).ActiveCfg = release_shared|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Digi JumpStart (ARMV4I).Build.0 = release_shared|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Digi JumpStart (ARMV4I).Deploy.0 = release_shared|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Digi JumpStart (ARMV4I).ActiveCfg = debug_static_mt|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Digi JumpStart (ARMV4I).Build.0 = debug_static_mt|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Digi JumpStart (ARMV4I).Deploy.0 = debug_static_mt|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Digi JumpStart (ARMV4I).ActiveCfg = release_static_mt|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Digi JumpStart (ARMV4I).Build.0 = release_static_mt|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Digi JumpStart (ARMV4I).Deploy.0 = release_static_mt|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Digi JumpStart (ARMV4I).ActiveCfg = debug_static_md|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Digi JumpStart (ARMV4I).Build.0 = debug_static_md|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Digi JumpStart (ARMV4I).Deploy.0 = debug_static_md|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Digi JumpStart (ARMV4I).ActiveCfg = release_static_md|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Digi JumpStart (ARMV4I).Build.0 = release_static_md|Digi JumpStart (ARMV4I) + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Digi JumpStart (ARMV4I).Deploy.0 = release_static_md|Digi JumpStart (ARMV4I) + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/samples/samples_WEC2013_vs110.sln b/SevenZip/samples/samples_WEC2013_vs110.sln new file mode 100644 index 000000000..bd872c3c6 --- /dev/null +++ b/SevenZip/samples/samples_WEC2013_vs110.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "un7zip", "un7zip\un7zip_WEC2013_vs110.vcxproj", "{897F888B-0819-319B-A305-67BBE1625297}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|SDK_AM335X_SK_WEC2013 = debug_shared|SDK_AM335X_SK_WEC2013 + release_shared|SDK_AM335X_SK_WEC2013 = release_shared|SDK_AM335X_SK_WEC2013 + debug_static_mt|SDK_AM335X_SK_WEC2013 = debug_static_mt|SDK_AM335X_SK_WEC2013 + release_static_mt|SDK_AM335X_SK_WEC2013 = release_static_mt|SDK_AM335X_SK_WEC2013 + debug_static_md|SDK_AM335X_SK_WEC2013 = debug_static_md|SDK_AM335X_SK_WEC2013 + release_static_md|SDK_AM335X_SK_WEC2013 = release_static_md|SDK_AM335X_SK_WEC2013 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_shared|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|SDK_AM335X_SK_WEC2013.Build.0 = debug_shared|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_shared|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|SDK_AM335X_SK_WEC2013.ActiveCfg = release_shared|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|SDK_AM335X_SK_WEC2013.Build.0 = release_shared|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|SDK_AM335X_SK_WEC2013.Deploy.0 = release_shared|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_mt|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_mt|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_mt|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|SDK_AM335X_SK_WEC2013.Build.0 = release_static_mt|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_mt|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = debug_static_md|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|SDK_AM335X_SK_WEC2013.Build.0 = debug_static_md|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = debug_static_md|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|SDK_AM335X_SK_WEC2013.ActiveCfg = release_static_md|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|SDK_AM335X_SK_WEC2013.Build.0 = release_static_md|SDK_AM335X_SK_WEC2013 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|SDK_AM335X_SK_WEC2013.Deploy.0 = release_static_md|SDK_AM335X_SK_WEC2013 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/samples/samples_vs100.sln b/SevenZip/samples/samples_vs100.sln new file mode 100644 index 000000000..3cee913e7 --- /dev/null +++ b/SevenZip/samples/samples_vs100.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "un7zip", "un7zip\un7zip_vs100.vcxproj", "{897F888B-0819-319B-A305-67BBE1625297}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|Win32 = debug_shared|Win32 + release_shared|Win32 = release_shared|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 + release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Win32.ActiveCfg = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Win32.Build.0 = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/samples/samples_vs110.sln b/SevenZip/samples/samples_vs110.sln new file mode 100644 index 000000000..f96ea1d8e --- /dev/null +++ b/SevenZip/samples/samples_vs110.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "un7zip", "un7zip\un7zip_vs110.vcxproj", "{897F888B-0819-319B-A305-67BBE1625297}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|Win32 = debug_shared|Win32 + release_shared|Win32 = release_shared|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 + release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Win32.ActiveCfg = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Win32.Build.0 = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/samples/samples_vs120.sln b/SevenZip/samples/samples_vs120.sln new file mode 100644 index 000000000..bc55881d1 --- /dev/null +++ b/SevenZip/samples/samples_vs120.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "un7zip", "un7zip\un7zip_vs120.vcxproj", "{897F888B-0819-319B-A305-67BBE1625297}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|Win32 = debug_shared|Win32 + release_shared|Win32 = release_shared|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 + release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Win32.ActiveCfg = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Win32.Build.0 = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/samples/samples_vs71.sln b/SevenZip/samples/samples_vs71.sln new file mode 100644 index 000000000..9a37ca6f7 --- /dev/null +++ b/SevenZip/samples/samples_vs71.sln @@ -0,0 +1,33 @@ +Microsoft Visual Studio Solution File, Format Version 8.00 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "un7zip", "un7zip\un7zip_vs71.vcproj", "{897F888B-0819-319B-A305-67BBE1625297}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection +EndProject +Global + GlobalSection(SolutionConfiguration) = preSolution + debug_shared = debug_shared + release_shared = release_shared + debug_static_mt = debug_static_mt + release_static_mt = release_static_mt + debug_static_md = debug_static_md + release_static_md = release_static_md + EndGlobalSection + GlobalSection(ProjectConfiguration) = postSolution + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared.ActiveCfg = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared.Build.0 = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared.ActiveCfg = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared.Build.0 = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt.ActiveCfg = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt.Build.0 = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt.ActiveCfg = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt.Build.0 = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md.ActiveCfg = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md.Build.0 = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md.ActiveCfg = release_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md.Build.0 = release_static_md|Win32 + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + EndGlobalSection + GlobalSection(ExtensibilityAddIns) = postSolution + EndGlobalSection +EndGlobal diff --git a/SevenZip/samples/samples_vs80.sln b/SevenZip/samples/samples_vs80.sln new file mode 100644 index 000000000..6b3f7fba0 --- /dev/null +++ b/SevenZip/samples/samples_vs80.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 9.00 +# Visual Studio 2005 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "un7zip", "un7zip\un7zip_vs80.vcproj", "{897F888B-0819-319B-A305-67BBE1625297}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|Win32 = debug_shared|Win32 + release_shared|Win32 = release_shared|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 + release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Win32.ActiveCfg = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Win32.Build.0 = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/samples/samples_vs90.sln b/SevenZip/samples/samples_vs90.sln new file mode 100644 index 000000000..9f435b792 --- /dev/null +++ b/SevenZip/samples/samples_vs90.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "un7zip", "un7zip\un7zip_vs90.vcproj", "{897F888B-0819-319B-A305-67BBE1625297}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|Win32 = debug_shared|Win32 + release_shared|Win32 = release_shared|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 + release_static_mt|Win32 = release_static_mt|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + release_static_md|Win32 = release_static_md|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|Win32.Deploy.0 = debug_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Win32.ActiveCfg = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Win32.Build.0 = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|Win32.Deploy.0 = release_shared|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|Win32.Deploy.0 = debug_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|Win32.Deploy.0 = release_static_mt|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|Win32.Deploy.0 = debug_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|Win32.Deploy.0 = release_static_md|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/samples/samples_x64_vs100.sln b/SevenZip/samples/samples_x64_vs100.sln new file mode 100644 index 000000000..41581fb39 --- /dev/null +++ b/SevenZip/samples/samples_x64_vs100.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2010 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "un7zip", "un7zip\un7zip_x64_vs100.vcxproj", "{897F888B-0819-319B-A305-67BBE1625297}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|x64 = debug_shared|x64 + release_shared|x64 = release_shared|x64 + debug_static_mt|x64 = debug_static_mt|x64 + release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|x64.ActiveCfg = debug_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|x64.Build.0 = debug_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|x64.Deploy.0 = debug_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|x64.ActiveCfg = release_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|x64.Build.0 = release_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|x64.Deploy.0 = release_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|x64.Build.0 = release_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|x64.Deploy.0 = release_static_md|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/samples/samples_x64_vs110.sln b/SevenZip/samples/samples_x64_vs110.sln new file mode 100644 index 000000000..d02974d8c --- /dev/null +++ b/SevenZip/samples/samples_x64_vs110.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "un7zip", "un7zip\un7zip_x64_vs110.vcxproj", "{897F888B-0819-319B-A305-67BBE1625297}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|x64 = debug_shared|x64 + release_shared|x64 = release_shared|x64 + debug_static_mt|x64 = debug_static_mt|x64 + release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|x64.ActiveCfg = debug_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|x64.Build.0 = debug_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|x64.Deploy.0 = debug_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|x64.ActiveCfg = release_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|x64.Build.0 = release_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|x64.Deploy.0 = release_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|x64.Build.0 = release_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|x64.Deploy.0 = release_static_md|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/samples/samples_x64_vs120.sln b/SevenZip/samples/samples_x64_vs120.sln new file mode 100644 index 000000000..482ea7f6f --- /dev/null +++ b/SevenZip/samples/samples_x64_vs120.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2013 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "un7zip", "un7zip\un7zip_x64_vs120.vcxproj", "{897F888B-0819-319B-A305-67BBE1625297}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|x64 = debug_shared|x64 + release_shared|x64 = release_shared|x64 + debug_static_mt|x64 = debug_static_mt|x64 + release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|x64.ActiveCfg = debug_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|x64.Build.0 = debug_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|x64.Deploy.0 = debug_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|x64.ActiveCfg = release_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|x64.Build.0 = release_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|x64.Deploy.0 = release_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|x64.Build.0 = release_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|x64.Deploy.0 = release_static_md|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/samples/samples_x64_vs90.sln b/SevenZip/samples/samples_x64_vs90.sln new file mode 100644 index 000000000..d1d77b6e0 --- /dev/null +++ b/SevenZip/samples/samples_x64_vs90.sln @@ -0,0 +1,37 @@ +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "un7zip", "un7zip\un7zip_x64_vs90.vcproj", "{897F888B-0819-319B-A305-67BBE1625297}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|x64 = debug_shared|x64 + release_shared|x64 = release_shared|x64 + debug_static_mt|x64 = debug_static_mt|x64 + release_static_mt|x64 = release_static_mt|x64 + debug_static_md|x64 = debug_static_md|x64 + release_static_md|x64 = release_static_md|x64 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|x64.ActiveCfg = debug_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|x64.Build.0 = debug_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_shared|x64.Deploy.0 = debug_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|x64.ActiveCfg = release_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|x64.Build.0 = release_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_shared|x64.Deploy.0 = release_shared|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|x64.ActiveCfg = debug_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|x64.Build.0 = debug_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_mt|x64.Deploy.0 = debug_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|x64.ActiveCfg = release_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|x64.Build.0 = release_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_mt|x64.Deploy.0 = release_static_mt|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|x64.ActiveCfg = debug_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|x64.Build.0 = debug_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.debug_static_md|x64.Deploy.0 = debug_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|x64.ActiveCfg = release_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|x64.Build.0 = release_static_md|x64 + {897F888B-0819-319B-A305-67BBE1625297}.release_static_md|x64.Deploy.0 = release_static_md|x64 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/samples/un7zip/src/un7zip.cpp b/SevenZip/samples/un7zip/src/un7zip.cpp index b7d42b736..afd2a4df7 100644 --- a/SevenZip/samples/un7zip/src/un7zip.cpp +++ b/SevenZip/samples/un7zip/src/un7zip.cpp @@ -110,7 +110,7 @@ protected: Option("extract", "x", "Extract single file or entire archive.") .required(false) .repeatable(false) - .argument("[file]", false) + .argument("file", false) .callback(OptionCallback(this, &Un7zipApp::handleExtract))); } @@ -141,7 +141,7 @@ protected: { HelpFormatter helpFormatter(options()); helpFormatter.setCommand(commandName()); - helpFormatter.setUsage("OPTIONS outdir"); + helpFormatter.setUsage("OPTIONS archive"); helpFormatter.setHeader("A application that demonstrates usage of Poco::SevenZip::Archive."); helpFormatter.format(std::cout); } diff --git a/SevenZip/samples/un7zip/un7zip.progen b/SevenZip/samples/un7zip/un7zip.progen new file mode 100644 index 000000000..3d9615b43 --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip.progen @@ -0,0 +1,10 @@ +vc.project.guid = ${vc.project.guidFromName} +vc.project.name = ${vc.project.baseName} +vc.project.target = ${vc.project.name} +vc.project.type = executable +vc.project.pocobase = ..\\..\\.. +vc.project.platforms = Win32, x64, WinCE +vc.project.configurations = debug_shared, release_shared, debug_static_mt, release_static_mt, debug_static_md, release_static_md +vc.project.prototype = ${vc.project.name}_vs90.vcproj +vc.project.compiler.include = ..\\..\\..\\Foundation\\include;..\\..\\..\\XML\\include;..\\..\\..\\Util\\include;..\\..\\..\\SevenZip\\include +vc.project.linker.entry.WinCE = wmainCRTStartup diff --git a/SevenZip/samples/un7zip/un7zip_CE_vs90.vcproj b/SevenZip/samples/un7zip/un7zip_CE_vs90.vcproj new file mode 100644 index 000000000..9ce7e98be --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_CE_vs90.vcproj @@ -0,0 +1,468 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj b/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj new file mode 100644 index 000000000..f09932f0a --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj @@ -0,0 +1,32 @@ + + + + + + + un7zip + {897F888B-0819-319B-A305-67BBE1625297} + en-US + 11.0 + true + SDK_AM335X_SK_WEC2013 + CE800 + + + + + + + <_ProjectFileVersion>11.0.61030.0 + un7zipd + un7zipd + un7zipd + un7zip + un7zip + un7zip + + + + + + diff --git a/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj.filters b/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj.filters new file mode 100644 index 000000000..48743573d --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_WEC2013_vs110.vcxproj.filters @@ -0,0 +1,16 @@ + + + + + {6c37317f-b6ac-4627-b172-4d818891978c} + + + {f25f2ce7-db9c-4e96-8f1b-32ad6dd04897} + + + + + Source Files + + + \ No newline at end of file diff --git a/SevenZip/samples/un7zip/un7zip_vs100.vcxproj b/SevenZip/samples/un7zip/un7zip_vs100.vcxproj new file mode 100644 index 000000000..9f8951632 --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_vs100.vcxproj @@ -0,0 +1,299 @@ + + + + + debug_shared + Win32 + + + debug_static_md + Win32 + + + debug_static_mt + Win32 + + + release_shared + Win32 + + + release_static_md + Win32 + + + release_static_mt + Win32 + + + + un7zip + {897F888B-0819-319B-A305-67BBE1625297} + un7zip + Win32Proj + + + + Application + MultiByte + + + Application + MultiByte + + + Application + MultiByte + + + Application + MultiByte + + + Application + MultiByte + + + Application + MultiByte + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + bin\ + obj\$(Configuration)\ + true + bin\ + obj\$(Configuration)\ + false + bin\static_mt\ + obj\$(Configuration)\ + true + bin\static_mt\ + obj\$(Configuration)\ + false + bin\static_md\ + obj\$(Configuration)\ + true + bin\static_md\ + obj\$(Configuration)\ + false + un7zipd + un7zipd + un7zipd + un7zip + un7zip + un7zip + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + EditAndContinue + Default + %(DisableSpecificWarnings) + + + %(AdditionalDependencies) + bin\un7zipd.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + true + true + bin\un7zipd.pdb + Console + MachineX86 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + %(DisableSpecificWarnings) + + + %(AdditionalDependencies) + bin\un7zip.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX86 + + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebug + true + true + true + true + + Level3 + EditAndContinue + Default + %(DisableSpecificWarnings) + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin\static_mt\un7zipd.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + true + true + bin\static_mt\un7zipd.pdb + Console + MachineX86 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreaded + false + true + true + true + + Level3 + + Default + %(DisableSpecificWarnings) + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin\static_mt\un7zip.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX86 + + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + EditAndContinue + Default + %(DisableSpecificWarnings) + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin\static_md\un7zipd.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + true + true + bin\static_md\un7zipd.pdb + Console + MachineX86 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + %(DisableSpecificWarnings) + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin\static_md\un7zip.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX86 + + + + + + + + diff --git a/SevenZip/samples/un7zip/un7zip_vs100.vcxproj.filters b/SevenZip/samples/un7zip/un7zip_vs100.vcxproj.filters new file mode 100644 index 000000000..2d7f00acd --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_vs100.vcxproj.filters @@ -0,0 +1,16 @@ + + + + + {e6d6da08-abaf-444e-9126-f2e45ff189b0} + + + {be064873-a883-419f-ad29-611ddaf30cba} + + + + + Source Files + + + \ No newline at end of file diff --git a/SevenZip/samples/un7zip/un7zip_vs110.vcxproj b/SevenZip/samples/un7zip/un7zip_vs110.vcxproj new file mode 100644 index 000000000..9a2504f86 --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_vs110.vcxproj @@ -0,0 +1,315 @@ + + + + + debug_shared + Win32 + + + debug_static_md + Win32 + + + debug_static_mt + Win32 + + + release_shared + Win32 + + + release_static_md + Win32 + + + release_static_mt + Win32 + + + + un7zip + {897F888B-0819-319B-A305-67BBE1625297} + un7zip + Win32Proj + + + + Application + v110 + MultiByte + v110 + + + Application + v110 + MultiByte + v110 + + + Application + v110 + MultiByte + v110 + + + Application + v110 + MultiByte + v110 + + + Application + v110 + MultiByte + v110 + + + Application + v110 + MultiByte + v110 + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>11.0.61030.0 + un7zipd + un7zipd + un7zipd + un7zip + un7zip + un7zip + + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + EditAndContinue + Default + + + bin\un7zipd.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + true + true + bin\un7zipd.pdb + Console + MachineX86 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + + + bin\un7zip.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX86 + + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebug + true + true + true + true + + Level3 + EditAndContinue + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin\static_mt\un7zipd.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + true + true + bin\static_mt\un7zipd.pdb + Console + MachineX86 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreaded + false + true + true + true + + Level3 + + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin\static_mt\un7zip.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX86 + + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + EditAndContinue + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin\static_md\un7zipd.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + true + true + bin\static_md\un7zipd.pdb + Console + MachineX86 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin\static_md\un7zip.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX86 + + + + + + + + diff --git a/SevenZip/samples/un7zip/un7zip_vs110.vcxproj.filters b/SevenZip/samples/un7zip/un7zip_vs110.vcxproj.filters new file mode 100644 index 000000000..81079ef16 --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_vs110.vcxproj.filters @@ -0,0 +1,16 @@ + + + + + {edb0a6a4-7af8-494d-9883-7cc2ade4fb52} + + + {894805cb-5fea-4000-ac63-2f8668254176} + + + + + Source Files + + + \ No newline at end of file diff --git a/SevenZip/samples/un7zip/un7zip_vs120.vcxproj b/SevenZip/samples/un7zip/un7zip_vs120.vcxproj new file mode 100644 index 000000000..28da3980c --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_vs120.vcxproj @@ -0,0 +1,315 @@ + + + + + debug_shared + Win32 + + + debug_static_md + Win32 + + + debug_static_mt + Win32 + + + release_shared + Win32 + + + release_static_md + Win32 + + + release_static_mt + Win32 + + + + un7zip + {897F888B-0819-319B-A305-67BBE1625297} + un7zip + Win32Proj + + + + Application + v120 + MultiByte + v120 + + + Application + v120 + MultiByte + v120 + + + Application + v120 + MultiByte + v120 + + + Application + v120 + MultiByte + v120 + + + Application + v120 + MultiByte + v120 + + + Application + v120 + MultiByte + v120 + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>12.0.21005.1 + un7zipd + un7zipd + un7zipd + un7zip + un7zip + un7zip + + + bin\ + obj\$(Configuration)\ + true + + + bin\ + obj\$(Configuration)\ + false + + + bin\static_mt\ + obj\$(Configuration)\ + true + + + bin\static_mt\ + obj\$(Configuration)\ + false + + + bin\static_md\ + obj\$(Configuration)\ + true + + + bin\static_md\ + obj\$(Configuration)\ + false + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + EditAndContinue + Default + + + bin\un7zipd.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + true + true + bin\un7zipd.pdb + Console + MachineX86 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + + + bin\un7zip.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX86 + + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebug + true + true + true + true + + Level3 + EditAndContinue + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin\static_mt\un7zipd.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + true + true + bin\static_mt\un7zipd.pdb + Console + MachineX86 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreaded + false + true + true + true + + Level3 + + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin\static_mt\un7zip.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX86 + + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + EditAndContinue + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin\static_md\un7zipd.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + true + true + bin\static_md\un7zipd.pdb + Console + MachineX86 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin\static_md\un7zip.exe + ..\..\..\lib;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX86 + + + + + + + + diff --git a/SevenZip/samples/un7zip/un7zip_vs120.vcxproj.filters b/SevenZip/samples/un7zip/un7zip_vs120.vcxproj.filters new file mode 100644 index 000000000..d1d8a5e28 --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_vs120.vcxproj.filters @@ -0,0 +1,16 @@ + + + + + {ab954481-9d05-487e-b127-8bc5b902eb59} + + + {14886f14-675b-4a26-a87b-1fb794be3631} + + + + + Source Files + + + \ No newline at end of file diff --git a/SevenZip/samples/un7zip/un7zip_vs71.vcproj b/SevenZip/samples/un7zip/un7zip_vs71.vcproj new file mode 100644 index 000000000..44b0aad98 --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_vs71.vcproj @@ -0,0 +1,395 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SevenZip/samples/un7zip/un7zip_vs80.vcproj b/SevenZip/samples/un7zip/un7zip_vs80.vcproj new file mode 100644 index 000000000..141305a31 --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_vs80.vcproj @@ -0,0 +1,435 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SevenZip/samples/un7zip/un7zip_vs90.sln b/SevenZip/samples/un7zip/un7zip_vs90.sln new file mode 100644 index 000000000..ef40c3fd5 --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_vs90.sln @@ -0,0 +1,32 @@ + +Microsoft Visual Studio Solution File, Format Version 10.00 +# Visual Studio 2008 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "un7zip", "un7zip_vs90.vcproj", "{9FE5275A-E14A-30C2-9C5B-AEBDE780608F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + debug_shared|Win32 = debug_shared|Win32 + debug_static_md|Win32 = debug_static_md|Win32 + debug_static_mt|Win32 = debug_static_mt|Win32 + release_shared|Win32 = release_shared|Win32 + release_static_md|Win32 = release_static_md|Win32 + release_static_mt|Win32 = release_static_mt|Win32 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_shared|Win32.ActiveCfg = debug_shared|Win32 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_shared|Win32.Build.0 = debug_shared|Win32 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_md|Win32.ActiveCfg = debug_static_md|Win32 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_md|Win32.Build.0 = debug_static_md|Win32 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_mt|Win32.ActiveCfg = debug_static_mt|Win32 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.debug_static_mt|Win32.Build.0 = debug_static_mt|Win32 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_shared|Win32.ActiveCfg = release_shared|Win32 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_shared|Win32.Build.0 = release_shared|Win32 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_md|Win32.ActiveCfg = release_static_md|Win32 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_md|Win32.Build.0 = release_static_md|Win32 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_mt|Win32.ActiveCfg = release_static_mt|Win32 + {9FE5275A-E14A-30C2-9C5B-AEBDE780608F}.release_static_mt|Win32.Build.0 = release_static_mt|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/SevenZip/samples/un7zip/un7zip_vs90.vcproj b/SevenZip/samples/un7zip/un7zip_vs90.vcproj new file mode 100644 index 000000000..4265bfc19 --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_vs90.vcproj @@ -0,0 +1,435 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SevenZip/samples/un7zip/un7zip_x64_vs100.vcxproj b/SevenZip/samples/un7zip/un7zip_x64_vs100.vcxproj new file mode 100644 index 000000000..3fc8a1864 --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_x64_vs100.vcxproj @@ -0,0 +1,299 @@ + + + + + debug_shared + x64 + + + debug_static_md + x64 + + + debug_static_mt + x64 + + + release_shared + x64 + + + release_static_md + x64 + + + release_static_mt + x64 + + + + un7zip + {897F888B-0819-319B-A305-67BBE1625297} + un7zip + Win32Proj + + + + Application + MultiByte + + + Application + MultiByte + + + Application + MultiByte + + + Application + MultiByte + + + Application + MultiByte + + + Application + MultiByte + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>10.0.40219.1 + bin64\ + obj64\$(Configuration)\ + true + bin64\ + obj64\$(Configuration)\ + false + bin64\static_mt\ + obj64\$(Configuration)\ + true + bin64\static_mt\ + obj64\$(Configuration)\ + false + bin64\static_md\ + obj64\$(Configuration)\ + true + bin64\static_md\ + obj64\$(Configuration)\ + false + un7zipd + un7zipd + un7zipd + un7zip + un7zip + un7zip + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + ProgramDatabase + Default + %(DisableSpecificWarnings) + + + %(AdditionalDependencies) + bin64\un7zipd.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + true + true + bin64\un7zipd.pdb + Console + MachineX64 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + %(DisableSpecificWarnings) + + + %(AdditionalDependencies) + bin64\un7zip.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX64 + + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebug + true + true + true + true + + Level3 + ProgramDatabase + Default + %(DisableSpecificWarnings) + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin64\static_mt\un7zipd.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + true + true + bin64\static_mt\un7zipd.pdb + Console + MachineX64 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreaded + false + true + true + true + + Level3 + + Default + %(DisableSpecificWarnings) + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin64\static_mt\un7zip.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX64 + + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + ProgramDatabase + Default + %(DisableSpecificWarnings) + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin64\static_md\un7zipd.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + true + true + bin64\static_md\un7zipd.pdb + Console + MachineX64 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + %(DisableSpecificWarnings) + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin64\static_md\un7zip.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX64 + + + + + + + + diff --git a/SevenZip/samples/un7zip/un7zip_x64_vs100.vcxproj.filters b/SevenZip/samples/un7zip/un7zip_x64_vs100.vcxproj.filters new file mode 100644 index 000000000..e2dbb482b --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_x64_vs100.vcxproj.filters @@ -0,0 +1,16 @@ + + + + + {fd6c208e-fea0-4534-afbe-10cd2ce93a43} + + + {e5cfcd23-a1bb-4c50-a9fa-b298d781aa0e} + + + + + Source Files + + + \ No newline at end of file diff --git a/SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj b/SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj new file mode 100644 index 000000000..d91db7c7f --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj @@ -0,0 +1,315 @@ + + + + + debug_shared + x64 + + + debug_static_md + x64 + + + debug_static_mt + x64 + + + release_shared + x64 + + + release_static_md + x64 + + + release_static_mt + x64 + + + + un7zip + {897F888B-0819-319B-A305-67BBE1625297} + un7zip + Win32Proj + + + + Application + v110 + MultiByte + v110 + + + Application + v110 + MultiByte + v110 + + + Application + v110 + MultiByte + v110 + + + Application + v110 + MultiByte + v110 + + + Application + v110 + MultiByte + v110 + + + Application + v110 + MultiByte + v110 + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>11.0.61030.0 + un7zipd + un7zipd + un7zipd + un7zip + un7zip + un7zip + + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + ProgramDatabase + Default + + + bin64\un7zipd.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + true + true + bin64\un7zipd.pdb + Console + MachineX64 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + + + bin64\un7zip.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX64 + + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebug + true + true + true + true + + Level3 + ProgramDatabase + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin64\static_mt\un7zipd.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + true + true + bin64\static_mt\un7zipd.pdb + Console + MachineX64 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreaded + false + true + true + true + + Level3 + + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin64\static_mt\un7zip.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX64 + + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + ProgramDatabase + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin64\static_md\un7zipd.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + true + true + bin64\static_md\un7zipd.pdb + Console + MachineX64 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin64\static_md\un7zip.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX64 + + + + + + + + diff --git a/SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj.filters b/SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj.filters new file mode 100644 index 000000000..3624db875 --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_x64_vs110.vcxproj.filters @@ -0,0 +1,16 @@ + + + + + {c776dd75-3e91-49b1-9282-50e12704204b} + + + {e9e30819-25ed-4823-a549-c43cbeeb17fe} + + + + + Source Files + + + \ No newline at end of file diff --git a/SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj b/SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj new file mode 100644 index 000000000..ce6004a56 --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj @@ -0,0 +1,315 @@ + + + + + debug_shared + x64 + + + debug_static_md + x64 + + + debug_static_mt + x64 + + + release_shared + x64 + + + release_static_md + x64 + + + release_static_mt + x64 + + + + un7zip + {897F888B-0819-319B-A305-67BBE1625297} + un7zip + Win32Proj + + + + Application + v120 + MultiByte + v120 + + + Application + v120 + MultiByte + v120 + + + Application + v120 + MultiByte + v120 + + + Application + v120 + MultiByte + v120 + + + Application + v120 + MultiByte + v120 + + + Application + v120 + MultiByte + v120 + + + + + + + + + + + + + + + + + + + + + + + + <_ProjectFileVersion>12.0.21005.1 + un7zipd + un7zipd + un7zipd + un7zip + un7zip + un7zip + + + bin64\ + obj64\$(Configuration)\ + true + + + bin64\ + obj64\$(Configuration)\ + false + + + bin64\static_mt\ + obj64\$(Configuration)\ + true + + + bin64\static_mt\ + obj64\$(Configuration)\ + false + + + bin64\static_md\ + obj64\$(Configuration)\ + true + + + bin64\static_md\ + obj64\$(Configuration)\ + false + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + ProgramDatabase + Default + + + bin64\un7zipd.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + true + true + bin64\un7zipd.pdb + Console + MachineX64 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + + + bin64\un7zip.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX64 + + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebug + true + true + true + true + + Level3 + ProgramDatabase + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin64\static_mt\un7zipd.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + true + true + bin64\static_mt\un7zipd.pdb + Console + MachineX64 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreaded + false + true + true + true + + Level3 + + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin64\static_mt\un7zip.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX64 + + + + + Disabled + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;_DEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + true + EnableFastChecks + MultiThreadedDebugDLL + true + true + true + true + + Level3 + ProgramDatabase + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin64\static_md\un7zipd.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + true + true + bin64\static_md\un7zipd.pdb + Console + MachineX64 + + + + + Disabled + OnlyExplicitInline + true + Speed + true + .\include;..\..\..\Foundation\include;..\..\..\XML\include;..\..\..\Util\include;..\..\..\SevenZip\include;%(AdditionalIncludeDirectories) + WIN32;NDEBUG;_WINDOWS;WINVER=0x0500;POCO_STATIC;%(PreprocessorDefinitions) + true + MultiThreadedDLL + false + true + true + true + + Level3 + + Default + + + iphlpapi.lib;winmm.lib;%(AdditionalDependencies) + bin64\static_md\un7zip.exe + ..\..\..\lib64;%(AdditionalLibraryDirectories) + false + Console + true + true + MachineX64 + + + + + + + + diff --git a/SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj.filters b/SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj.filters new file mode 100644 index 000000000..13b8067a9 --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_x64_vs120.vcxproj.filters @@ -0,0 +1,16 @@ + + + + + {834f463e-46a7-457d-992e-aed8876fdb90} + + + {f22ea72a-283d-42e5-9934-61c4baebdc4d} + + + + + Source Files + + + \ No newline at end of file diff --git a/SevenZip/samples/un7zip/un7zip_x64_vs90.vcproj b/SevenZip/samples/un7zip/un7zip_x64_vs90.vcproj new file mode 100644 index 000000000..1038de737 --- /dev/null +++ b/SevenZip/samples/un7zip/un7zip_x64_vs90.vcproj @@ -0,0 +1,435 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +