libarchive: Remove unused build/windows directory (#11885)
The directory contains some files with unclear licensing anyway.
This commit is contained in:
parent
62f816adde
commit
fabdf7aa32
|
@ -1,117 +0,0 @@
|
|||
#/* FILE: mvcpp.nt
|
||||
# *
|
||||
# * Copyright (c) 2008
|
||||
# * TouchNet Information Systems, Inc.
|
||||
# * All Rights Reserved
|
||||
# *
|
||||
# * This program is an unpublished copyright work of TouchNet Information
|
||||
# * Systems, Inc. of Lenexa, KS. The program, all information disclosed
|
||||
# * and the matter shown and described hereon or herewith are confidential
|
||||
# * and proprietary to TouchNet Information Systems, Inc.
|
||||
# *
|
||||
# ******************************************************************************
|
||||
# *
|
||||
# * $LastChangedBy: kientzle $
|
||||
# * $Locker: $
|
||||
# * $ProjectName: $
|
||||
# * $ProjectRevision: $
|
||||
# * $LastChangedRevision: 29 $
|
||||
# * $LastChangedDate: 2008-05-05 18:10:33 -0400 (Mon, 05 May 2008) $
|
||||
# * $State$
|
||||
# * $RCSfile$
|
||||
# * $Source$
|
||||
# *
|
||||
# * Change Log:
|
||||
# * $Log: $
|
||||
# *
|
||||
# */
|
||||
|
||||
.SUFFIXES : .c .cpp .obm
|
||||
|
||||
ZLIB_INCL=\3rdParty\ZLib\Current\Include
|
||||
|
||||
EXTRA_DEFINES=/DLIBARCHIVE_STATIC=1
|
||||
|
||||
!ifdef DEBUG
|
||||
DEST_PATH=.\lib\mvcpp\debug
|
||||
OBJ_DIR=obj\debug
|
||||
COMPILE_FLAG=/MTd /DDEBUG=1 $(EXTRA_DEFINES) /Zi /Fd$(OBJ_DIR)\libarchive.pdb
|
||||
!else
|
||||
DEST_PATH=.\lib\mvcpp
|
||||
OBJ_DIR=obj
|
||||
COMPILE_FLAG=/MT $(EXTRA_DEFINES) /Fd$(OBJ_DIR)\libarchive.pdb
|
||||
!endif
|
||||
|
||||
INCLUDE=.;$(MSDEVDIR)\INCLUDE;$(ZLIB_INCL);
|
||||
INCLUDE_OPTS=
|
||||
|
||||
NT_CPP=cl
|
||||
NT_C=cl
|
||||
NT_LIBRARIAN=lib
|
||||
|
||||
###
|
||||
NT_C_OPTS=$(COMPILE_FLAG) /GX /Zl /Zp1 /nologo /c /G5 /Oi /Ot /TC /DVC_EXTRANLEAN /DWIN32_LEAN_AND_MEAN $(INCLUDE_OPTS)
|
||||
NT_CPP_OPTS=$(COMPILE_FLAG) /GX /Zl /Zp1 /nologo /c /G5 /Oi /Ot /TP /DVC_EXTRANLEAN /DWIN32_LEAN_AND_MEAN $(INCLUDE_OPTS)
|
||||
NT_LIB_OPTS=
|
||||
|
||||
.cpp{$(OBJ_DIR)}.obm:
|
||||
-md $(OBJ_DIR) > nul 2>nul
|
||||
$(NT_CPP) $(NT_CPP_OPTS) -Fo$*.obm $<
|
||||
|
||||
.c{$(OBJ_DIR)}.obm:
|
||||
-md $(OBJ_DIR) > nul 2>nul
|
||||
$(NT_C) $(NT_C_OPTS) -Fo$*.obm $<
|
||||
|
||||
|
||||
OBJS=\
|
||||
$(OBJ_DIR)\archive_check_magic.obm $(OBJ_DIR)\archive_entry.obm \
|
||||
$(OBJ_DIR)\archive_entry_copy_stat.obm $(OBJ_DIR)\archive_entry_link_resolver.obm \
|
||||
$(OBJ_DIR)\archive_entry_stat.obm $(OBJ_DIR)\archive_entry_strmode.obm \
|
||||
$(OBJ_DIR)\archive_read.obm $(OBJ_DIR)\archive_read_data_into_fd.obm \
|
||||
$(OBJ_DIR)\archive_read_extract.obm $(OBJ_DIR)\archive_read_open_fd.obm \
|
||||
$(OBJ_DIR)\archive_read_open_file.obm $(OBJ_DIR)\archive_read_open_filename.obm \
|
||||
$(OBJ_DIR)\archive_read_open_memory.obm $(OBJ_DIR)\archive_read_support_compression_all.obm \
|
||||
$(OBJ_DIR)\archive_read_support_compression_bzip2.obm \
|
||||
$(OBJ_DIR)\archive_read_support_compression_compress.obm \
|
||||
$(OBJ_DIR)\archive_read_support_compression_gzip.obm \
|
||||
$(OBJ_DIR)\archive_read_support_compression_none.obm \
|
||||
$(OBJ_DIR)\archive_read_support_compression_program.obm \
|
||||
$(OBJ_DIR)\archive_read_support_format_all.obm \
|
||||
$(OBJ_DIR)\archive_read_support_format_ar.obm \
|
||||
$(OBJ_DIR)\archive_read_support_format_cpio.obm \
|
||||
$(OBJ_DIR)\archive_read_support_format_empty.obm \
|
||||
$(OBJ_DIR)\archive_read_support_format_iso9660.obm \
|
||||
$(OBJ_DIR)\archive_read_support_format_mtree.obm \
|
||||
$(OBJ_DIR)\archive_read_support_format_tar.obm \
|
||||
$(OBJ_DIR)\archive_read_support_format_zip.obm \
|
||||
$(OBJ_DIR)\archive_string.obm $(OBJ_DIR)\archive_string_sprintf.obm \
|
||||
$(OBJ_DIR)\archive_util.obm $(OBJ_DIR)\archive_virtual.obm \
|
||||
$(OBJ_DIR)\archive_write.obm $(OBJ_DIR)\archive_write_disk.obm \
|
||||
$(OBJ_DIR)\archive_write_disk_set_standard_lookup.obm \
|
||||
$(OBJ_DIR)\archive_write_open_fd.obm $(OBJ_DIR)\archive_write_open_file.obm \
|
||||
$(OBJ_DIR)\archive_write_open_filename.obm $(OBJ_DIR)\archive_write_open_memory.obm \
|
||||
$(OBJ_DIR)\archive_write_set_compression_bzip2.obm $(OBJ_DIR)\archive_write_set_compression_compress.obm \
|
||||
$(OBJ_DIR)\archive_write_set_compression_gzip.obm $(OBJ_DIR)\archive_write_set_compression_none.obm \
|
||||
$(OBJ_DIR)\archive_write_set_compression_program.obm $(OBJ_DIR)\archive_write_set_format.obm \
|
||||
$(OBJ_DIR)\archive_write_set_format_ar.obm $(OBJ_DIR)\archive_write_set_format_by_name.obm \
|
||||
$(OBJ_DIR)\archive_write_set_format_cpio.obm $(OBJ_DIR)\archive_write_set_format_cpio_newc.obm \
|
||||
$(OBJ_DIR)\archive_write_set_format_pax.obm $(OBJ_DIR)\archive_write_set_format_shar.obm \
|
||||
$(OBJ_DIR)\archive_write_set_format_ustar.obm $(OBJ_DIR)\filter_fork.obm \
|
||||
$(OBJ_DIR)\libarchive-nonposix.obm
|
||||
|
||||
all: CLEAN $(DEST_PATH)\libarchive.lib
|
||||
|
||||
$(DEST_PATH)\libarchive.lib :: $(OBJS) $(DEST_PATH)
|
||||
|
||||
$(DEST_PATH)\libarchive.lib ::
|
||||
$(NT_LIBRARIAN) $(NT_LIB_OPTS) /OUT:$(DEST_PATH)\libarchive.lib $(OBJS)
|
||||
|
||||
$(DEST_PATH):
|
||||
-md $(DEST_PATH) > nul 2>nul
|
||||
|
||||
CLEAN:
|
||||
!ifdef CLEAN
|
||||
-del $(OBJ_DIR)\*.pd? > nul 2>nul
|
||||
-ren $(OBJ_DIR)\*.pdb *.pd1 > nul 2>nul
|
||||
-ren $(OBJ_DIR)\*.pdb *.pd2 > nul 2>nul
|
||||
!endif
|
|
@ -1,23 +0,0 @@
|
|||
Microsoft Visual Studio Solution File, Format Version 8.00
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libarchive", "libarchive.vcproj", "{0C758FDB-BE1D-47E9-8E18-9168AB34A308}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfiguration) = preSolution
|
||||
Debug = Debug
|
||||
Release = Release
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectDependencies) = postSolution
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfiguration) = postSolution
|
||||
{0C758FDB-BE1D-47E9-8E18-9168AB34A308}.Debug.ActiveCfg = Debug|Win32
|
||||
{0C758FDB-BE1D-47E9-8E18-9168AB34A308}.Debug.Build.0 = Debug|Win32
|
||||
{0C758FDB-BE1D-47E9-8E18-9168AB34A308}.Release.ActiveCfg = Release|Win32
|
||||
{0C758FDB-BE1D-47E9-8E18-9168AB34A308}.Release.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityAddIns) = postSolution
|
||||
EndGlobalSection
|
||||
EndGlobal
|
|
@ -1,327 +0,0 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="7.10"
|
||||
Name="libarchive"
|
||||
ProjectGUID="{0C758FDB-BE1D-47E9-8E18-9168AB34A308}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB;PLATFORM_CONFIG_H="\"config_windows.h\"""
|
||||
MinimalRebuild="TRUE"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
DebugInformationFormat="4"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="../../lib/$(ProjectName)-vc71-mt-d.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB;PLATFORM_CONFIG_H="\"config_windows.h\"""
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
DebugInformationFormat="3"/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="../../lib/$(ProjectName)-vc71-mt.lib"/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCManagedWrapperGeneratorTool"/>
|
||||
<Tool
|
||||
Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_check_magic.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry_copy_stat.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry_link_resolver.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry_stat.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry_strmode.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_data_into_fd.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_disk.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_disk_set_standard_lookup.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_extract.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_open_fd.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_open_file.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_open_filename.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_open_memory.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_all.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_bzip2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_compress.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_gzip.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_lzma.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_none.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_program.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_all.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_ar.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_cpio.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_empty.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_iso9660.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_mtree.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_tar.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_zip.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_string.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_string_sprintf.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_util.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_virtual.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_windows.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_disk.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_disk_set_standard_lookup.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_open_fd.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_open_file.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_open_filename.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_open_memory.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_compression_bzip2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_compression_compress.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_compression_gzip.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_compression_none.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_compression_program.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_ar.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_by_name.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_cpio.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_cpio_newc.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_mtree.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_pax.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_shar.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_ustar.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\filter_fork.c">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_endian.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry_private.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_platform.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_private.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_disk_private.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_private.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_string.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_windows.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_disk_private.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_private.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\config_windows.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\filter_fork.h">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}">
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
|
@ -1,25 +0,0 @@
|
|||
Microsoft Visual Studio Solution File, Format Version 9.00
|
||||
# Visual Studio 2005
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libarchive", "libarchive.vcproj", "{0C758FDB-BE1D-47E9-8E18-9168AB34A308}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libarchive_test", "libarchive_test\libarchive_test.vcproj", "{407CA0B9-0CCB-4F02-A20B-CBBAEAAA2E4B}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{0C758FDB-BE1D-47E9-8E18-9168AB34A308}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{0C758FDB-BE1D-47E9-8E18-9168AB34A308}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{0C758FDB-BE1D-47E9-8E18-9168AB34A308}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{0C758FDB-BE1D-47E9-8E18-9168AB34A308}.Release|Win32.Build.0 = Release|Win32
|
||||
{407CA0B9-0CCB-4F02-A20B-CBBAEAAA2E4B}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{407CA0B9-0CCB-4F02-A20B-CBBAEAAA2E4B}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{407CA0B9-0CCB-4F02-A20B-CBBAEAAA2E4B}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{407CA0B9-0CCB-4F02-A20B-CBBAEAAA2E4B}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
|
@ -1,455 +0,0 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="libarchive"
|
||||
ProjectGUID="{0C758FDB-BE1D-47E9-8E18-9168AB34A308}"
|
||||
RootNamespace="libarchive"
|
||||
Keyword="Win32Proj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB;PLATFORM_CONFIG_H="\"config_windows.h\"";LIBARCHIVE_STATIC"
|
||||
MinimalRebuild="true"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="false"
|
||||
DebugInformationFormat="4"
|
||||
DisableSpecificWarnings="4996"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="../../lib/$(ProjectName)-vc80-mt-d.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB;PLATFORM_CONFIG_H="\"config_windows.h\"";LIBARCHIVE_STATIC"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
DebugInformationFormat="3"
|
||||
DisableSpecificWarnings="4996"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="../../lib/$(ProjectName)-vc80-mt.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_check_magic.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry_copy_stat.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry_link_resolver.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry_stat.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry_strmode.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_data_into_fd.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_disk.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_disk_set_standard_lookup.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_extract.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_open_fd.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_open_file.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_open_filename.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_open_memory.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_all.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_bzip2.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_compress.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_gzip.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_lzma.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_none.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_program.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_all.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_ar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_cpio.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_empty.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_iso9660.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_mtree.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_tar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_zip.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_string.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_string_sprintf.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_util.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_virtual.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_windows.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_disk.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_disk_set_standard_lookup.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_open_fd.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_open_file.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_open_filename.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_open_memory.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_compression_bzip2.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_compression_compress.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_compression_gzip.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_compression_none.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_compression_program.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_ar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_by_name.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_cpio.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_cpio_newc.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_mtree.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_pax.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_shar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_ustar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\filter_fork.c"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_endian.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry_private.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_platform.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_private.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_disk_private.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_private.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_string.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_windows.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_disk_private.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_private.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\config_windows.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\filter_fork.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||
>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
|
@ -1,495 +0,0 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="8.00"
|
||||
Name="libarchive_test"
|
||||
ProjectGUID="{407CA0B9-0CCB-4F02-A20B-CBBAEAAA2E4B}"
|
||||
RootNamespace="libarchive_test"
|
||||
Keyword="Win32Proj"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="..\..\..\libarchive"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;LIBARCHIVE_STATIC"
|
||||
MinimalRebuild="true"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="false"
|
||||
DebugInformationFormat="4"
|
||||
CompileAs="1"
|
||||
DisableSpecificWarnings="4996"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
ShowProgress="0"
|
||||
OutputFile="..\..\..\$(ProjectName).exe"
|
||||
LinkIncremental="2"
|
||||
GenerateDebugInformation="true"
|
||||
SubSystem="1"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
EmbedManifest="true"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2"
|
||||
WholeProgramOptimization="1"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\libarchive"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;LIBARCHIVE_STATIC"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="false"
|
||||
DebugInformationFormat="3"
|
||||
CompileAs="1"
|
||||
DisableSpecificWarnings="4996"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="..\..\..\$(ProjectName).exe"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="true"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebDeploymentTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
<ProjectReference
|
||||
ReferencedProjectIdentifier="{0C758FDB-BE1D-47E9-8E18-9168AB34A308}"
|
||||
CopyLocal="false"
|
||||
CopyLocalDependencies="false"
|
||||
CopyLocalSatelliteAssemblies="false"
|
||||
RelativePathToProject=".\libarchive.vcproj"
|
||||
/>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\main.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\read_open_memory.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_acl_basic.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_acl_freebsd.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_acl_pax.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_archive_api_feature.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_bad_fd.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_compat_bzip2.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_compat_gtar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_compat_gzip.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_compat_tar_hardlink.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_compat_zip.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_empty_write.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_entry.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_entry_strmode.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_fuzz.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_link_resolver.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_pax_filename_encoding.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_compress_program.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_data_large.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_disk.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_extract.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_ar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_cpio_bin.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_cpio_bin_bz2.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_cpio_bin_gz.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_cpio_bin_Z.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_cpio_odc.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_cpio_svr4_gzip.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_cpio_svr4c_Z.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_empty.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_gtar_gz.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_gtar_lzma.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_gtar_sparse.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_iso_gz.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_isorr_bz2.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_mtree.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_pax_bz2.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_tar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_tar_empty_filename.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_tbz.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_tgz.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_tz.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_zip.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_large.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_pax_truncated.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_position.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_truncated.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_tar_filenames.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_tar_large.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_ustar_filenames.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_compress.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_compress_program.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_disk.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_disk_hardlink.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_disk_perms.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_disk_secure.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_disk_times.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_ar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_cpio.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_cpio_empty.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_cpio_newc.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_cpio_odc.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_pax.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_shar_empty.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_tar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_tar_empty.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_tar_ustar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_open_memory.c"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\list.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||
>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
|
@ -1,25 +0,0 @@
|
|||
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||
# Visual C++ Express 2008
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libarchive", "libarchive.vcproj", "{0C758FDB-BE1D-47E9-8E18-9168AB34A308}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "libarchive_test", "libarchive_test\libarchive_test.vcproj", "{407CA0B9-0CCB-4F02-A20B-CBBAEAAA2E4B}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{0C758FDB-BE1D-47E9-8E18-9168AB34A308}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{0C758FDB-BE1D-47E9-8E18-9168AB34A308}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{0C758FDB-BE1D-47E9-8E18-9168AB34A308}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{0C758FDB-BE1D-47E9-8E18-9168AB34A308}.Release|Win32.Build.0 = Release|Win32
|
||||
{407CA0B9-0CCB-4F02-A20B-CBBAEAAA2E4B}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{407CA0B9-0CCB-4F02-A20B-CBBAEAAA2E4B}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{407CA0B9-0CCB-4F02-A20B-CBBAEAAA2E4B}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{407CA0B9-0CCB-4F02-A20B-CBBAEAAA2E4B}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
|
@ -1,456 +0,0 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="libarchive"
|
||||
ProjectGUID="{0C758FDB-BE1D-47E9-8E18-9168AB34A308}"
|
||||
RootNamespace="libarchive"
|
||||
Keyword="Win32Proj"
|
||||
TargetFrameworkVersion="131072"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="Debug"
|
||||
ConfigurationType="4"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_LIB;PLATFORM_CONFIG_H="\"config_windows.h\"""
|
||||
MinimalRebuild="true"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
DebugInformationFormat="4"
|
||||
DisableSpecificWarnings="4996"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="../../lib/$(ProjectName)-vc90-mt-d.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="Release"
|
||||
ConfigurationType="4"
|
||||
InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
InlineFunctionExpansion="1"
|
||||
AdditionalIncludeDirectories=""
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_LIB;PLATFORM_CONFIG_H="\"config_windows.h\"""
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
DebugInformationFormat="3"
|
||||
DisableSpecificWarnings="4996"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="../../lib/$(ProjectName)-vc90-mt.lib"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_check_magic.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry_copy_stat.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry_link_resolver.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry_stat.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry_strmode.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_data_into_fd.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_disk.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_disk_set_standard_lookup.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_extract.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_open_fd.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_open_file.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_open_filename.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_open_memory.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_all.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_bzip2.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_compress.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_gzip.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_lzma.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_none.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_compression_program.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_all.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_ar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_cpio.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_empty.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_iso9660.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_mtree.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_tar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_support_format_zip.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_string.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_string_sprintf.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_util.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_virtual.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_windows.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_disk.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_disk_set_standard_lookup.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_open_fd.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_open_file.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_open_filename.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_open_memory.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_compression_bzip2.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_compression_compress.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_compression_gzip.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_compression_none.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_compression_program.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_ar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_by_name.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_cpio.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_cpio_newc.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_mtree.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_pax.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_shar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_set_format_ustar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\filter_fork.c"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_endian.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_entry_private.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_platform.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_private.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_disk_private.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_read_private.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_string.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_windows.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_disk_private.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\archive_write_private.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\config_windows.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\libarchive\filter_fork.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||
>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
|
@ -1,494 +0,0 @@
|
|||
<?xml version="1.0" encoding="Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="libarchive_test"
|
||||
ProjectGUID="{407CA0B9-0CCB-4F02-A20B-CBBAEAAA2E4B}"
|
||||
RootNamespace="libarchive_test"
|
||||
Keyword="Win32Proj"
|
||||
TargetFrameworkVersion="131072"
|
||||
>
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"
|
||||
/>
|
||||
</Platforms>
|
||||
<ToolFiles>
|
||||
</ToolFiles>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
Optimization="0"
|
||||
AdditionalIncludeDirectories="..\..\..\libarchive"
|
||||
PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;LIBARCHIVE_STATIC"
|
||||
MinimalRebuild="true"
|
||||
BasicRuntimeChecks="3"
|
||||
RuntimeLibrary="3"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="false"
|
||||
DebugInformationFormat="4"
|
||||
CompileAs="1"
|
||||
DisableSpecificWarnings="4996"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
ShowProgress="0"
|
||||
OutputFile="..\..\..\$(ProjectName).exe"
|
||||
LinkIncremental="2"
|
||||
GenerateDebugInformation="true"
|
||||
SubSystem="1"
|
||||
RandomizedBaseAddress="1"
|
||||
DataExecutionPrevention="0"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
EmbedManifest="true"
|
||||
SuppressStartupBanner="true"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="$(SolutionDir)$(ConfigurationName)"
|
||||
IntermediateDirectory="$(ConfigurationName)"
|
||||
ConfigurationType="1"
|
||||
CharacterSet="2"
|
||||
WholeProgramOptimization="1"
|
||||
>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXMLDataGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCWebServiceProxyGeneratorTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\libarchive"
|
||||
PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;LIBARCHIVE_STATIC"
|
||||
RuntimeLibrary="2"
|
||||
UsePrecompiledHeader="0"
|
||||
WarningLevel="3"
|
||||
Detect64BitPortabilityProblems="false"
|
||||
DebugInformationFormat="3"
|
||||
CompileAs="1"
|
||||
DisableSpecificWarnings="4996"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManagedResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
OutputFile="..\..\..\$(ProjectName).exe"
|
||||
LinkIncremental="1"
|
||||
GenerateDebugInformation="true"
|
||||
SubSystem="1"
|
||||
OptimizeReferences="2"
|
||||
EnableCOMDATFolding="2"
|
||||
RandomizedBaseAddress="1"
|
||||
DataExecutionPrevention="0"
|
||||
TargetMachine="1"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCALinkTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCManifestTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCXDCMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCBscMakeTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCFxCopTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCAppVerifierTool"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<References>
|
||||
<ProjectReference
|
||||
ReferencedProjectIdentifier="{0C758FDB-BE1D-47E9-8E18-9168AB34A308}"
|
||||
CopyLocal="false"
|
||||
CopyLocalDependencies="false"
|
||||
CopyLocalSatelliteAssemblies="false"
|
||||
RelativePathToProject=".\libarchive.vcproj"
|
||||
/>
|
||||
</References>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
|
||||
UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\main.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\read_open_memory.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_acl_basic.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_acl_freebsd.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_acl_pax.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_archive_api_feature.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_bad_fd.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_compat_bzip2.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_compat_gtar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_compat_gzip.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_compat_tar_hardlink.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_compat_zip.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_empty_write.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_entry.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_entry_strmode.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_fuzz.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_link_resolver.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_pax_filename_encoding.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_compress_program.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_data_large.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_disk.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_extract.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_ar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_cpio_bin.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_cpio_bin_bz2.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_cpio_bin_gz.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_cpio_bin_Z.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_cpio_odc.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_cpio_svr4_gzip.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_cpio_svr4c_Z.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_empty.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_gtar_gz.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_gtar_lzma.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_gtar_sparse.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_iso_gz.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_isorr_bz2.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_mtree.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_pax_bz2.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_tar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_tar_empty_filename.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_tbz.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_tgz.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_tz.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_format_zip.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_large.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_pax_truncated.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_position.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_read_truncated.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_tar_filenames.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_tar_large.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_ustar_filenames.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_compress.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_compress_program.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_disk.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_disk_hardlink.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_disk_perms.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_disk_secure.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_disk_times.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_ar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_cpio.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_cpio_empty.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_cpio_newc.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_cpio_odc.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_pax.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_shar_empty.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_tar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_tar_empty.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_format_tar_ustar.c"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test_write_open_memory.c"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="h;hpp;hxx;hm;inl;inc;xsd"
|
||||
UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
|
||||
>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\list.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\libarchive\test\test.h"
|
||||
>
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Resource Files"
|
||||
Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
|
||||
UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
|
||||
>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
|
@ -1,107 +0,0 @@
|
|||
#/* FILE: wccpp.nt
|
||||
# *
|
||||
# * Copyright (c) 2008
|
||||
# * TouchNet Information Systems, Inc.
|
||||
# * All Rights Reserved
|
||||
# *
|
||||
# * This program is an unpublished copyright work of TouchNet Information
|
||||
# * Systems, Inc. of Lenexa, KS. The program, all information disclosed
|
||||
# * and the matter shown and described hereon or herewith are confidential
|
||||
# * and proprietary to TouchNet Information Systems, Inc.
|
||||
# *
|
||||
# ******************************************************************************
|
||||
# *
|
||||
# * $LastChangedBy: kientzle $
|
||||
# * $Locker: $
|
||||
# * $ProjectName: $
|
||||
# * $ProjectRevision: $
|
||||
# * $LastChangedRevision: 29 $
|
||||
# * $LastChangedDate: 2008-05-05 18:10:33 -0400 (Mon, 05 May 2008) $
|
||||
# * $State$
|
||||
# * $RCSfile$
|
||||
# * $Source$
|
||||
# *
|
||||
# * Change Log:
|
||||
# * $Log: $
|
||||
# *
|
||||
# */
|
||||
|
||||
.EXTENSIONS:
|
||||
.EXTENSIONS: .obn .cpp .c
|
||||
|
||||
ZLIB_INCL=\3rdParty\ZLib\Current\Include
|
||||
|
||||
!ifdef DEBUG
|
||||
DEST_PATH=.\lib\wccpp\debug
|
||||
OBJ_DIR=obj\debug
|
||||
EXT_COMPILE_FLAG=-d2 -DLIBARCHIVE_STATIC=1
|
||||
!else
|
||||
DEST_PATH=.\lib\wccpp
|
||||
OBJ_DIR=obj
|
||||
EXT_COMPILE_FLAG=-DLIBARCHIVE_STATIC=1
|
||||
!endif
|
||||
|
||||
# ----- NT compiler options -----------------------------------------------
|
||||
NT_CPP=wpp386
|
||||
NT_C=wcc386
|
||||
NT_LIBRARIAN=wlib
|
||||
|
||||
|
||||
###
|
||||
INCLUDE_OPTS=/I.;$(%watcom)\h;$(%watcom)\h\nt;$(ZLIB_INCL);
|
||||
NT_CPP_OPTS=-ei -wx -xs -xss -xst -od -of+ -zp1 -5 -bt=nt -bm $(EXT_COMPILE_FLAG) $(INCLUDE_OPTS) -DWIN32_LEAN_AND_MEAN
|
||||
NT_C_OPTS=-ei -wx -od -of+ -zp1 -5 -bt=nt -bm $(EXT_COMPILE_FLAG) $(INCLUDE_OPTS) -DWIN32_LEAN_AND_MEAN
|
||||
NT_LIB_OPTS=
|
||||
|
||||
.cpp{$(OBJ_DIR)}.obn:
|
||||
-md $(OBJ_DIR) > nul 2>nul
|
||||
$(NT_CPP) $(NT_CPP_OPTS) -zp1 -fo=$*.obn $<
|
||||
|
||||
.c{$(OBJ_DIR)}.obn:
|
||||
-md $(OBJ_DIR) > nul 2>nul
|
||||
$(NT_C) $(NT_C_OPTS) -zp1 -fo=$*.obn $<
|
||||
|
||||
OBJS = &
|
||||
$(OBJ_DIR)\archive_check_magic.obn $(OBJ_DIR)\archive_entry.obn &
|
||||
$(OBJ_DIR)\archive_entry_copy_stat.obn $(OBJ_DIR)\archive_entry_link_resolver.obn &
|
||||
$(OBJ_DIR)\archive_entry_stat.obn $(OBJ_DIR)\archive_entry_strmode.obn &
|
||||
$(OBJ_DIR)\archive_read.obn $(OBJ_DIR)\archive_read_data_into_fd.obn &
|
||||
$(OBJ_DIR)\archive_read_extract.obn $(OBJ_DIR)\archive_read_open_fd.obn &
|
||||
$(OBJ_DIR)\archive_read_open_file.obn $(OBJ_DIR)\archive_read_open_filename.obn &
|
||||
$(OBJ_DIR)\archive_read_open_memory.obn $(OBJ_DIR)\archive_read_support_compression_all.obn &
|
||||
$(OBJ_DIR)\archive_read_support_compression_bzip2.obn &
|
||||
$(OBJ_DIR)\archive_read_support_compression_compress.obn &
|
||||
$(OBJ_DIR)\archive_read_support_compression_gzip.obn &
|
||||
$(OBJ_DIR)\archive_read_support_compression_none.obn &
|
||||
$(OBJ_DIR)\archive_read_support_compression_program.obn &
|
||||
$(OBJ_DIR)\archive_read_support_format_all.obn &
|
||||
$(OBJ_DIR)\archive_read_support_format_ar.obn &
|
||||
$(OBJ_DIR)\archive_read_support_format_cpio.obn &
|
||||
$(OBJ_DIR)\archive_read_support_format_empty.obn &
|
||||
$(OBJ_DIR)\archive_read_support_format_iso9660.obn &
|
||||
$(OBJ_DIR)\archive_read_support_format_mtree.obn &
|
||||
$(OBJ_DIR)\archive_read_support_format_tar.obn &
|
||||
$(OBJ_DIR)\archive_read_support_format_zip.obn &
|
||||
$(OBJ_DIR)\archive_string.obn $(OBJ_DIR)\archive_string_sprintf.obn &
|
||||
$(OBJ_DIR)\archive_util.obn $(OBJ_DIR)\archive_virtual.obn &
|
||||
$(OBJ_DIR)\archive_write.obn $(OBJ_DIR)\archive_write_disk.obn &
|
||||
$(OBJ_DIR)\archive_write_disk_set_standard_lookup.obn &
|
||||
$(OBJ_DIR)\archive_write_open_fd.obn $(OBJ_DIR)\archive_write_open_file.obn &
|
||||
$(OBJ_DIR)\archive_write_open_filename.obn $(OBJ_DIR)\archive_write_open_memory.obn &
|
||||
$(OBJ_DIR)\archive_write_set_compression_bzip2.obn $(OBJ_DIR)\archive_write_set_compression_compress.obn &
|
||||
$(OBJ_DIR)\archive_write_set_compression_gzip.obn $(OBJ_DIR)\archive_write_set_compression_none.obn &
|
||||
$(OBJ_DIR)\archive_write_set_compression_program.obn $(OBJ_DIR)\archive_write_set_format.obn &
|
||||
$(OBJ_DIR)\archive_write_set_format_ar.obn $(OBJ_DIR)\archive_write_set_format_by_name.obn &
|
||||
$(OBJ_DIR)\archive_write_set_format_cpio.obn $(OBJ_DIR)\archive_write_set_format_cpio_newc.obn &
|
||||
$(OBJ_DIR)\archive_write_set_format_pax.obn $(OBJ_DIR)\archive_write_set_format_shar.obn &
|
||||
$(OBJ_DIR)\archive_write_set_format_ustar.obn $(OBJ_DIR)\filter_fork.obn &
|
||||
$(OBJ_DIR)\libarchive-nonposix.obn
|
||||
|
||||
$(DEST_PATH)\LibArchive.lib :: $(OBJS) $(DEST_PATH)
|
||||
|
||||
$(DEST_PATH)\LibArchive.lib ::
|
||||
-md $(DEST_PATH) > nul 2>nul
|
||||
$(NT_LIBRARIAN) $@ -+ $(OBJS)
|
||||
|
||||
$(DEST_PATH):
|
||||
-md $(DEST_PATH) > nul 2>nul
|
Loading…
Reference in New Issue