extlz4 0.3.4 → 0.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/Rakefile +21 -3
- data/contrib/lz4/CODING_STYLE +57 -0
- data/contrib/lz4/LICENSE +1 -1
- data/contrib/lz4/Makefile.inc +17 -15
- data/contrib/lz4/NEWS +25 -0
- data/contrib/lz4/README.md +16 -5
- data/contrib/lz4/SECURITY.md +17 -0
- data/contrib/lz4/build/README.md +4 -15
- data/contrib/lz4/build/VS2022/_build.bat +39 -0
- data/contrib/lz4/build/VS2022/_setup.bat +35 -0
- data/contrib/lz4/build/VS2022/_test.bat +38 -0
- data/contrib/lz4/build/VS2022/build-and-test-win32-debug.bat +26 -0
- data/contrib/lz4/build/VS2022/build-and-test-win32-release.bat +26 -0
- data/contrib/lz4/build/VS2022/build-and-test-x64-debug.bat +26 -0
- data/contrib/lz4/build/VS2022/build-and-test-x64-release.bat +26 -0
- data/contrib/lz4/build/VS2022/datagen/datagen.vcxproj +7 -3
- data/contrib/lz4/build/{VS2017 → VS2022}/lz4/lz4.vcxproj +21 -7
- data/contrib/lz4/build/VS2022/lz4.sln +5 -2
- data/contrib/lz4/build/cmake/CMakeLists.txt +95 -100
- data/contrib/lz4/build/meson/GetLz4LibraryVersion.py +39 -0
- data/contrib/lz4/build/meson/README.md +34 -0
- data/contrib/lz4/build/meson/meson/contrib/gen_manual/meson.build +42 -0
- data/contrib/lz4/build/meson/meson/contrib/meson.build +11 -0
- data/contrib/lz4/build/meson/meson/examples/meson.build +32 -0
- data/contrib/lz4/build/meson/meson/lib/meson.build +87 -0
- data/contrib/lz4/build/meson/meson/meson.build +135 -0
- data/contrib/lz4/build/meson/meson/ossfuzz/meson.build +35 -0
- data/contrib/lz4/build/meson/meson/programs/meson.build +91 -0
- data/contrib/lz4/build/meson/meson/tests/meson.build +162 -0
- data/contrib/lz4/build/meson/meson.build +31 -0
- data/contrib/lz4/build/meson/meson_options.txt +44 -0
- data/contrib/lz4/build/visual/README.md +5 -0
- data/contrib/lz4/build/visual/generate_solution.cmd +55 -0
- data/contrib/lz4/build/visual/generate_vs2015.cmd +3 -0
- data/contrib/lz4/build/visual/generate_vs2017.cmd +3 -0
- data/contrib/lz4/build/visual/generate_vs2019.cmd +3 -0
- data/contrib/lz4/build/visual/generate_vs2022.cmd +3 -0
- data/contrib/lz4/lib/README.md +25 -1
- data/contrib/lz4/lib/lz4.c +206 -99
- data/contrib/lz4/lib/lz4.h +111 -69
- data/contrib/lz4/lib/lz4file.c +111 -81
- data/contrib/lz4/lib/lz4file.h +2 -2
- data/contrib/lz4/lib/lz4frame.c +179 -121
- data/contrib/lz4/lib/lz4frame.h +162 -103
- data/contrib/lz4/lib/lz4hc.c +943 -382
- data/contrib/lz4/lib/lz4hc.h +43 -42
- data/contrib/lz4/lib/xxhash.c +21 -21
- data/contrib/lz4/ossfuzz/decompress_fuzzer.c +1 -1
- data/contrib/lz4/ossfuzz/fuzz_helpers.h +1 -1
- data/ext/blockapi.c +11 -11
- data/ext/frameapi.c +23 -23
- metadata +34 -28
- data/contrib/lz4/build/VS2010/datagen/datagen.vcxproj +0 -169
- data/contrib/lz4/build/VS2010/frametest/frametest.vcxproj +0 -176
- data/contrib/lz4/build/VS2010/fullbench/fullbench.vcxproj +0 -176
- data/contrib/lz4/build/VS2010/fullbench-dll/fullbench-dll.vcxproj +0 -180
- data/contrib/lz4/build/VS2010/fuzzer/fuzzer.vcxproj +0 -173
- data/contrib/lz4/build/VS2010/liblz4/liblz4.vcxproj +0 -175
- data/contrib/lz4/build/VS2010/liblz4-dll/liblz4-dll.rc +0 -51
- data/contrib/lz4/build/VS2010/liblz4-dll/liblz4-dll.vcxproj +0 -179
- data/contrib/lz4/build/VS2010/lz4/lz4.vcxproj +0 -189
- data/contrib/lz4/build/VS2010/lz4.sln +0 -98
- data/contrib/lz4/build/VS2017/datagen/datagen.vcxproj +0 -173
- data/contrib/lz4/build/VS2017/frametest/frametest.vcxproj +0 -180
- data/contrib/lz4/build/VS2017/fullbench/fullbench.vcxproj +0 -180
- data/contrib/lz4/build/VS2017/fullbench-dll/fullbench-dll.vcxproj +0 -184
- data/contrib/lz4/build/VS2017/fuzzer/fuzzer.vcxproj +0 -177
- data/contrib/lz4/build/VS2017/liblz4/liblz4.vcxproj +0 -179
- data/contrib/lz4/build/VS2017/liblz4-dll/liblz4-dll.rc +0 -51
- data/contrib/lz4/build/VS2017/liblz4-dll/liblz4-dll.vcxproj +0 -183
- data/contrib/lz4/build/VS2017/lz4/lz4.rc +0 -51
- data/contrib/lz4/build/VS2017/lz4.sln +0 -103
- /data/contrib/lz4/build/{VS2010 → VS2022}/lz4/lz4.rc +0 -0
|
@@ -1,180 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup Label="ProjectConfigurations">
|
|
4
|
-
<ProjectConfiguration Include="Debug|Win32">
|
|
5
|
-
<Configuration>Debug</Configuration>
|
|
6
|
-
<Platform>Win32</Platform>
|
|
7
|
-
</ProjectConfiguration>
|
|
8
|
-
<ProjectConfiguration Include="Debug|x64">
|
|
9
|
-
<Configuration>Debug</Configuration>
|
|
10
|
-
<Platform>x64</Platform>
|
|
11
|
-
</ProjectConfiguration>
|
|
12
|
-
<ProjectConfiguration Include="Release|Win32">
|
|
13
|
-
<Configuration>Release</Configuration>
|
|
14
|
-
<Platform>Win32</Platform>
|
|
15
|
-
</ProjectConfiguration>
|
|
16
|
-
<ProjectConfiguration Include="Release|x64">
|
|
17
|
-
<Configuration>Release</Configuration>
|
|
18
|
-
<Platform>x64</Platform>
|
|
19
|
-
</ProjectConfiguration>
|
|
20
|
-
</ItemGroup>
|
|
21
|
-
<PropertyGroup Label="Globals">
|
|
22
|
-
<ProjectGuid>{13992FD2-077E-4954-B065-A428198201A9}</ProjectGuid>
|
|
23
|
-
<Keyword>Win32Proj</Keyword>
|
|
24
|
-
<RootNamespace>fullbench-dll</RootNamespace>
|
|
25
|
-
<OutDir>$(SolutionDir)bin\$(Platform)_$(Configuration)\</OutDir>
|
|
26
|
-
<IntDir>$(SolutionDir)bin\obj\$(RootNamespace)_$(Platform)_$(Configuration)\</IntDir>
|
|
27
|
-
</PropertyGroup>
|
|
28
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
29
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
30
|
-
<ConfigurationType>Application</ConfigurationType>
|
|
31
|
-
<UseDebugLibraries>true</UseDebugLibraries>
|
|
32
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
33
|
-
</PropertyGroup>
|
|
34
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
35
|
-
<ConfigurationType>Application</ConfigurationType>
|
|
36
|
-
<UseDebugLibraries>true</UseDebugLibraries>
|
|
37
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
38
|
-
</PropertyGroup>
|
|
39
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
40
|
-
<ConfigurationType>Application</ConfigurationType>
|
|
41
|
-
<UseDebugLibraries>false</UseDebugLibraries>
|
|
42
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
43
|
-
<WholeProgramOptimization Condition="'$(EnableWholeProgramOptimization)'=='true'">true</WholeProgramOptimization>
|
|
44
|
-
</PropertyGroup>
|
|
45
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
46
|
-
<ConfigurationType>Application</ConfigurationType>
|
|
47
|
-
<UseDebugLibraries>false</UseDebugLibraries>
|
|
48
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
49
|
-
<WholeProgramOptimization Condition="'$(EnableWholeProgramOptimization)'=='true'">true</WholeProgramOptimization>
|
|
50
|
-
</PropertyGroup>
|
|
51
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
52
|
-
<ImportGroup Label="ExtensionSettings">
|
|
53
|
-
</ImportGroup>
|
|
54
|
-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
55
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
56
|
-
</ImportGroup>
|
|
57
|
-
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
|
58
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
59
|
-
</ImportGroup>
|
|
60
|
-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
61
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
62
|
-
</ImportGroup>
|
|
63
|
-
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
|
64
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
65
|
-
</ImportGroup>
|
|
66
|
-
<PropertyGroup Label="UserMacros" />
|
|
67
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
68
|
-
<LinkIncremental>true</LinkIncremental>
|
|
69
|
-
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(SolutionDir)..\..\programs;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
70
|
-
</PropertyGroup>
|
|
71
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
72
|
-
<LinkIncremental>true</LinkIncremental>
|
|
73
|
-
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(SolutionDir)..\..\programs;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
74
|
-
<RunCodeAnalysis>true</RunCodeAnalysis>
|
|
75
|
-
</PropertyGroup>
|
|
76
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
77
|
-
<LinkIncremental>false</LinkIncremental>
|
|
78
|
-
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(SolutionDir)..\..\programs;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
79
|
-
</PropertyGroup>
|
|
80
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
81
|
-
<LinkIncremental>false</LinkIncremental>
|
|
82
|
-
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(SolutionDir)..\..\programs;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
83
|
-
<RunCodeAnalysis>true</RunCodeAnalysis>
|
|
84
|
-
</PropertyGroup>
|
|
85
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
86
|
-
<ClCompile>
|
|
87
|
-
<PrecompiledHeader>
|
|
88
|
-
</PrecompiledHeader>
|
|
89
|
-
<WarningLevel>Level4</WarningLevel>
|
|
90
|
-
<Optimization>Disabled</Optimization>
|
|
91
|
-
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;LZ4_DLL_IMPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
92
|
-
<TreatWarningAsError>true</TreatWarningAsError>
|
|
93
|
-
<EnablePREfast>false</EnablePREfast>
|
|
94
|
-
<RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreadedDebug</RuntimeLibrary>
|
|
95
|
-
</ClCompile>
|
|
96
|
-
<Link>
|
|
97
|
-
<SubSystem>Console</SubSystem>
|
|
98
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
99
|
-
<AdditionalLibraryDirectories>$(SolutionDir)bin\$(Platform)_$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
100
|
-
<AdditionalDependencies>liblz4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
101
|
-
</Link>
|
|
102
|
-
</ItemDefinitionGroup>
|
|
103
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
104
|
-
<ClCompile>
|
|
105
|
-
<PrecompiledHeader>
|
|
106
|
-
</PrecompiledHeader>
|
|
107
|
-
<WarningLevel>Level4</WarningLevel>
|
|
108
|
-
<Optimization>Disabled</Optimization>
|
|
109
|
-
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;LZ4_DLL_IMPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
110
|
-
<TreatWarningAsError>true</TreatWarningAsError>
|
|
111
|
-
<EnablePREfast>true</EnablePREfast>
|
|
112
|
-
<AdditionalOptions>/analyze:stacksize295252 %(AdditionalOptions)</AdditionalOptions>
|
|
113
|
-
<RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreadedDebug</RuntimeLibrary>
|
|
114
|
-
</ClCompile>
|
|
115
|
-
<Link>
|
|
116
|
-
<SubSystem>Console</SubSystem>
|
|
117
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
118
|
-
<AdditionalLibraryDirectories>$(SolutionDir)bin\$(Platform)_$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
119
|
-
<AdditionalDependencies>liblz4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
120
|
-
</Link>
|
|
121
|
-
</ItemDefinitionGroup>
|
|
122
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
123
|
-
<ClCompile>
|
|
124
|
-
<WarningLevel>Level4</WarningLevel>
|
|
125
|
-
<PrecompiledHeader>
|
|
126
|
-
</PrecompiledHeader>
|
|
127
|
-
<Optimization>MaxSpeed</Optimization>
|
|
128
|
-
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
129
|
-
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
130
|
-
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;LZ4_DLL_IMPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
131
|
-
<TreatWarningAsError>false</TreatWarningAsError>
|
|
132
|
-
<EnablePREfast>false</EnablePREfast>
|
|
133
|
-
<RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreaded</RuntimeLibrary>
|
|
134
|
-
</ClCompile>
|
|
135
|
-
<Link>
|
|
136
|
-
<SubSystem>Console</SubSystem>
|
|
137
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
138
|
-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
139
|
-
<OptimizeReferences>true</OptimizeReferences>
|
|
140
|
-
<AdditionalLibraryDirectories>$(SolutionDir)bin\$(Platform)_$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
141
|
-
<AdditionalDependencies>liblz4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
142
|
-
</Link>
|
|
143
|
-
</ItemDefinitionGroup>
|
|
144
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
145
|
-
<ClCompile>
|
|
146
|
-
<WarningLevel>Level4</WarningLevel>
|
|
147
|
-
<PrecompiledHeader>
|
|
148
|
-
</PrecompiledHeader>
|
|
149
|
-
<Optimization>MaxSpeed</Optimization>
|
|
150
|
-
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
151
|
-
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
152
|
-
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;LZ4_DLL_IMPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
153
|
-
<TreatWarningAsError>false</TreatWarningAsError>
|
|
154
|
-
<EnablePREfast>true</EnablePREfast>
|
|
155
|
-
<AdditionalOptions>/analyze:stacksize295252 %(AdditionalOptions)</AdditionalOptions>
|
|
156
|
-
<RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreaded</RuntimeLibrary>
|
|
157
|
-
</ClCompile>
|
|
158
|
-
<Link>
|
|
159
|
-
<SubSystem>Console</SubSystem>
|
|
160
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
161
|
-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
162
|
-
<OptimizeReferences>true</OptimizeReferences>
|
|
163
|
-
<AdditionalLibraryDirectories>$(SolutionDir)bin\$(Platform)_$(Configuration);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
|
164
|
-
<AdditionalDependencies>liblz4.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
165
|
-
</Link>
|
|
166
|
-
</ItemDefinitionGroup>
|
|
167
|
-
<ItemGroup>
|
|
168
|
-
<ClCompile Include="..\..\..\lib\xxhash.c" />
|
|
169
|
-
<ClCompile Include="..\..\..\tests\fullbench.c" />
|
|
170
|
-
</ItemGroup>
|
|
171
|
-
<ItemGroup>
|
|
172
|
-
<ClInclude Include="..\..\..\lib\lz4.h" />
|
|
173
|
-
<ClInclude Include="..\..\..\lib\lz4frame.h" />
|
|
174
|
-
<ClInclude Include="..\..\..\lib\lz4hc.h" />
|
|
175
|
-
<ClInclude Include="..\..\..\lib\xxhash.h" />
|
|
176
|
-
</ItemGroup>
|
|
177
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
178
|
-
<ImportGroup Label="ExtensionTargets">
|
|
179
|
-
</ImportGroup>
|
|
180
|
-
</Project>
|
|
@@ -1,173 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup Label="ProjectConfigurations">
|
|
4
|
-
<ProjectConfiguration Include="Debug|Win32">
|
|
5
|
-
<Configuration>Debug</Configuration>
|
|
6
|
-
<Platform>Win32</Platform>
|
|
7
|
-
</ProjectConfiguration>
|
|
8
|
-
<ProjectConfiguration Include="Debug|x64">
|
|
9
|
-
<Configuration>Debug</Configuration>
|
|
10
|
-
<Platform>x64</Platform>
|
|
11
|
-
</ProjectConfiguration>
|
|
12
|
-
<ProjectConfiguration Include="Release|Win32">
|
|
13
|
-
<Configuration>Release</Configuration>
|
|
14
|
-
<Platform>Win32</Platform>
|
|
15
|
-
</ProjectConfiguration>
|
|
16
|
-
<ProjectConfiguration Include="Release|x64">
|
|
17
|
-
<Configuration>Release</Configuration>
|
|
18
|
-
<Platform>x64</Platform>
|
|
19
|
-
</ProjectConfiguration>
|
|
20
|
-
</ItemGroup>
|
|
21
|
-
<PropertyGroup Label="Globals">
|
|
22
|
-
<ProjectGuid>{18B9F1A7-9C66-4352-898B-30804DADE0FD}</ProjectGuid>
|
|
23
|
-
<Keyword>Win32Proj</Keyword>
|
|
24
|
-
<RootNamespace>fuzzer</RootNamespace>
|
|
25
|
-
<OutDir>$(SolutionDir)bin\$(Platform)_$(Configuration)\</OutDir>
|
|
26
|
-
<IntDir>$(SolutionDir)bin\obj\$(RootNamespace)_$(Platform)_$(Configuration)\</IntDir>
|
|
27
|
-
</PropertyGroup>
|
|
28
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
29
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
30
|
-
<ConfigurationType>Application</ConfigurationType>
|
|
31
|
-
<UseDebugLibraries>true</UseDebugLibraries>
|
|
32
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
33
|
-
</PropertyGroup>
|
|
34
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
35
|
-
<ConfigurationType>Application</ConfigurationType>
|
|
36
|
-
<UseDebugLibraries>true</UseDebugLibraries>
|
|
37
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
38
|
-
</PropertyGroup>
|
|
39
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
40
|
-
<ConfigurationType>Application</ConfigurationType>
|
|
41
|
-
<UseDebugLibraries>false</UseDebugLibraries>
|
|
42
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
43
|
-
<WholeProgramOptimization Condition="'$(EnableWholeProgramOptimization)'=='true'">true</WholeProgramOptimization>
|
|
44
|
-
</PropertyGroup>
|
|
45
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
46
|
-
<ConfigurationType>Application</ConfigurationType>
|
|
47
|
-
<UseDebugLibraries>false</UseDebugLibraries>
|
|
48
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
49
|
-
<WholeProgramOptimization Condition="'$(EnableWholeProgramOptimization)'=='true'">true</WholeProgramOptimization>
|
|
50
|
-
</PropertyGroup>
|
|
51
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
52
|
-
<ImportGroup Label="ExtensionSettings">
|
|
53
|
-
</ImportGroup>
|
|
54
|
-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
55
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
56
|
-
</ImportGroup>
|
|
57
|
-
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
|
58
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
59
|
-
</ImportGroup>
|
|
60
|
-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
61
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
62
|
-
</ImportGroup>
|
|
63
|
-
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
|
64
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
65
|
-
</ImportGroup>
|
|
66
|
-
<PropertyGroup Label="UserMacros" />
|
|
67
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
68
|
-
<LinkIncremental>true</LinkIncremental>
|
|
69
|
-
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(SolutionDir)..\..\programs;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
70
|
-
</PropertyGroup>
|
|
71
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
72
|
-
<LinkIncremental>true</LinkIncremental>
|
|
73
|
-
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(SolutionDir)..\..\programs;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
74
|
-
<RunCodeAnalysis>true</RunCodeAnalysis>
|
|
75
|
-
</PropertyGroup>
|
|
76
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
77
|
-
<LinkIncremental>false</LinkIncremental>
|
|
78
|
-
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(SolutionDir)..\..\programs;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
79
|
-
</PropertyGroup>
|
|
80
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
81
|
-
<LinkIncremental>false</LinkIncremental>
|
|
82
|
-
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(SolutionDir)..\..\programs;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
83
|
-
<RunCodeAnalysis>true</RunCodeAnalysis>
|
|
84
|
-
</PropertyGroup>
|
|
85
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
86
|
-
<ClCompile>
|
|
87
|
-
<PrecompiledHeader>
|
|
88
|
-
</PrecompiledHeader>
|
|
89
|
-
<WarningLevel>Level4</WarningLevel>
|
|
90
|
-
<Optimization>Disabled</Optimization>
|
|
91
|
-
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
92
|
-
<TreatWarningAsError>true</TreatWarningAsError>
|
|
93
|
-
<EnablePREfast>false</EnablePREfast>
|
|
94
|
-
<RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreadedDebug</RuntimeLibrary>
|
|
95
|
-
</ClCompile>
|
|
96
|
-
<Link>
|
|
97
|
-
<SubSystem>Console</SubSystem>
|
|
98
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
99
|
-
</Link>
|
|
100
|
-
</ItemDefinitionGroup>
|
|
101
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
102
|
-
<ClCompile>
|
|
103
|
-
<PrecompiledHeader>
|
|
104
|
-
</PrecompiledHeader>
|
|
105
|
-
<WarningLevel>Level4</WarningLevel>
|
|
106
|
-
<Optimization>Disabled</Optimization>
|
|
107
|
-
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
108
|
-
<TreatWarningAsError>true</TreatWarningAsError>
|
|
109
|
-
<EnablePREfast>true</EnablePREfast>
|
|
110
|
-
<AdditionalOptions>/analyze:stacksize295252 %(AdditionalOptions)</AdditionalOptions>
|
|
111
|
-
<RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreadedDebug</RuntimeLibrary>
|
|
112
|
-
</ClCompile>
|
|
113
|
-
<Link>
|
|
114
|
-
<SubSystem>Console</SubSystem>
|
|
115
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
116
|
-
</Link>
|
|
117
|
-
</ItemDefinitionGroup>
|
|
118
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
119
|
-
<ClCompile>
|
|
120
|
-
<WarningLevel>Level4</WarningLevel>
|
|
121
|
-
<PrecompiledHeader>
|
|
122
|
-
</PrecompiledHeader>
|
|
123
|
-
<Optimization>MaxSpeed</Optimization>
|
|
124
|
-
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
125
|
-
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
126
|
-
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
127
|
-
<TreatWarningAsError>false</TreatWarningAsError>
|
|
128
|
-
<EnablePREfast>false</EnablePREfast>
|
|
129
|
-
<RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreaded</RuntimeLibrary>
|
|
130
|
-
</ClCompile>
|
|
131
|
-
<Link>
|
|
132
|
-
<SubSystem>Console</SubSystem>
|
|
133
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
134
|
-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
135
|
-
<OptimizeReferences>true</OptimizeReferences>
|
|
136
|
-
</Link>
|
|
137
|
-
</ItemDefinitionGroup>
|
|
138
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
139
|
-
<ClCompile>
|
|
140
|
-
<WarningLevel>Level4</WarningLevel>
|
|
141
|
-
<PrecompiledHeader>
|
|
142
|
-
</PrecompiledHeader>
|
|
143
|
-
<Optimization>MaxSpeed</Optimization>
|
|
144
|
-
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
145
|
-
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
146
|
-
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
147
|
-
<TreatWarningAsError>false</TreatWarningAsError>
|
|
148
|
-
<EnablePREfast>true</EnablePREfast>
|
|
149
|
-
<AdditionalOptions>/analyze:stacksize295252 %(AdditionalOptions)</AdditionalOptions>
|
|
150
|
-
<RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreaded</RuntimeLibrary>
|
|
151
|
-
</ClCompile>
|
|
152
|
-
<Link>
|
|
153
|
-
<SubSystem>Console</SubSystem>
|
|
154
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
155
|
-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
156
|
-
<OptimizeReferences>true</OptimizeReferences>
|
|
157
|
-
</Link>
|
|
158
|
-
</ItemDefinitionGroup>
|
|
159
|
-
<ItemGroup>
|
|
160
|
-
<ClCompile Include="..\..\..\lib\lz4.c" />
|
|
161
|
-
<ClCompile Include="..\..\..\lib\lz4hc.c" />
|
|
162
|
-
<ClCompile Include="..\..\..\lib\xxhash.c" />
|
|
163
|
-
<ClCompile Include="..\..\..\tests\fuzzer.c" />
|
|
164
|
-
</ItemGroup>
|
|
165
|
-
<ItemGroup>
|
|
166
|
-
<ClInclude Include="..\..\..\lib\lz4.h" />
|
|
167
|
-
<ClInclude Include="..\..\..\lib\lz4hc.h" />
|
|
168
|
-
<ClInclude Include="..\..\..\lib\xxhash.h" />
|
|
169
|
-
</ItemGroup>
|
|
170
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
171
|
-
<ImportGroup Label="ExtensionTargets">
|
|
172
|
-
</ImportGroup>
|
|
173
|
-
</Project>
|
|
@@ -1,175 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup Label="ProjectConfigurations">
|
|
4
|
-
<ProjectConfiguration Include="Debug|Win32">
|
|
5
|
-
<Configuration>Debug</Configuration>
|
|
6
|
-
<Platform>Win32</Platform>
|
|
7
|
-
</ProjectConfiguration>
|
|
8
|
-
<ProjectConfiguration Include="Debug|x64">
|
|
9
|
-
<Configuration>Debug</Configuration>
|
|
10
|
-
<Platform>x64</Platform>
|
|
11
|
-
</ProjectConfiguration>
|
|
12
|
-
<ProjectConfiguration Include="Release|Win32">
|
|
13
|
-
<Configuration>Release</Configuration>
|
|
14
|
-
<Platform>Win32</Platform>
|
|
15
|
-
</ProjectConfiguration>
|
|
16
|
-
<ProjectConfiguration Include="Release|x64">
|
|
17
|
-
<Configuration>Release</Configuration>
|
|
18
|
-
<Platform>x64</Platform>
|
|
19
|
-
</ProjectConfiguration>
|
|
20
|
-
</ItemGroup>
|
|
21
|
-
<PropertyGroup Label="Globals">
|
|
22
|
-
<ProjectGuid>{9092C5CC-3E71-41B3-BF68-4A7BDD8A5476}</ProjectGuid>
|
|
23
|
-
<Keyword>Win32Proj</Keyword>
|
|
24
|
-
<RootNamespace>liblz4</RootNamespace>
|
|
25
|
-
<OutDir>$(SolutionDir)bin\$(Platform)_$(Configuration)\</OutDir>
|
|
26
|
-
<IntDir>$(SolutionDir)bin\obj\$(RootNamespace)_$(Platform)_$(Configuration)\</IntDir>
|
|
27
|
-
</PropertyGroup>
|
|
28
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
29
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
|
30
|
-
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
31
|
-
<UseDebugLibraries>true</UseDebugLibraries>
|
|
32
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
33
|
-
</PropertyGroup>
|
|
34
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
|
35
|
-
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
36
|
-
<UseDebugLibraries>true</UseDebugLibraries>
|
|
37
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
38
|
-
</PropertyGroup>
|
|
39
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
|
40
|
-
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
41
|
-
<UseDebugLibraries>false</UseDebugLibraries>
|
|
42
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
43
|
-
<WholeProgramOptimization Condition="'$(EnableWholeProgramOptimization)'=='true'">true</WholeProgramOptimization>
|
|
44
|
-
</PropertyGroup>
|
|
45
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
|
46
|
-
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
47
|
-
<UseDebugLibraries>false</UseDebugLibraries>
|
|
48
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
49
|
-
<WholeProgramOptimization Condition="'$(EnableWholeProgramOptimization)'=='true'">true</WholeProgramOptimization>
|
|
50
|
-
</PropertyGroup>
|
|
51
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
52
|
-
<ImportGroup Label="ExtensionSettings">
|
|
53
|
-
</ImportGroup>
|
|
54
|
-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
55
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
56
|
-
</ImportGroup>
|
|
57
|
-
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
|
|
58
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
59
|
-
</ImportGroup>
|
|
60
|
-
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
61
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
62
|
-
</ImportGroup>
|
|
63
|
-
<ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
|
|
64
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
65
|
-
</ImportGroup>
|
|
66
|
-
<PropertyGroup Label="UserMacros" />
|
|
67
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
68
|
-
<LinkIncremental>true</LinkIncremental>
|
|
69
|
-
<TargetName>liblz4_static</TargetName>
|
|
70
|
-
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
71
|
-
</PropertyGroup>
|
|
72
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
73
|
-
<LinkIncremental>true</LinkIncremental>
|
|
74
|
-
<TargetName>liblz4_static</TargetName>
|
|
75
|
-
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
76
|
-
<RunCodeAnalysis>true</RunCodeAnalysis>
|
|
77
|
-
</PropertyGroup>
|
|
78
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
79
|
-
<LinkIncremental>false</LinkIncremental>
|
|
80
|
-
<TargetName>liblz4_static</TargetName>
|
|
81
|
-
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
82
|
-
</PropertyGroup>
|
|
83
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
84
|
-
<LinkIncremental>false</LinkIncremental>
|
|
85
|
-
<TargetName>liblz4_static</TargetName>
|
|
86
|
-
<IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
|
|
87
|
-
<RunCodeAnalysis>true</RunCodeAnalysis>
|
|
88
|
-
</PropertyGroup>
|
|
89
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
|
90
|
-
<ClCompile>
|
|
91
|
-
<PrecompiledHeader>
|
|
92
|
-
</PrecompiledHeader>
|
|
93
|
-
<WarningLevel>Level4</WarningLevel>
|
|
94
|
-
<Optimization>Disabled</Optimization>
|
|
95
|
-
<PreprocessorDefinitions>WIN32;_DEBUG;LZ4_DLL_EXPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
96
|
-
<TreatWarningAsError>true</TreatWarningAsError>
|
|
97
|
-
<EnablePREfast>false</EnablePREfast>
|
|
98
|
-
<RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreadedDebug</RuntimeLibrary>
|
|
99
|
-
</ClCompile>
|
|
100
|
-
<Link>
|
|
101
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
102
|
-
</Link>
|
|
103
|
-
</ItemDefinitionGroup>
|
|
104
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
105
|
-
<ClCompile>
|
|
106
|
-
<PrecompiledHeader>
|
|
107
|
-
</PrecompiledHeader>
|
|
108
|
-
<WarningLevel>Level4</WarningLevel>
|
|
109
|
-
<Optimization>Disabled</Optimization>
|
|
110
|
-
<PreprocessorDefinitions>WIN32;_DEBUG;LZ4_DLL_EXPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
111
|
-
<TreatWarningAsError>true</TreatWarningAsError>
|
|
112
|
-
<EnablePREfast>true</EnablePREfast>
|
|
113
|
-
<AdditionalOptions>/analyze:stacksize295252 %(AdditionalOptions)</AdditionalOptions>
|
|
114
|
-
<RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreadedDebug</RuntimeLibrary>
|
|
115
|
-
</ClCompile>
|
|
116
|
-
<Link>
|
|
117
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
118
|
-
</Link>
|
|
119
|
-
</ItemDefinitionGroup>
|
|
120
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
|
121
|
-
<ClCompile>
|
|
122
|
-
<WarningLevel>Level4</WarningLevel>
|
|
123
|
-
<PrecompiledHeader>
|
|
124
|
-
</PrecompiledHeader>
|
|
125
|
-
<Optimization>MaxSpeed</Optimization>
|
|
126
|
-
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
127
|
-
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
128
|
-
<PreprocessorDefinitions>WIN32;NDEBUG;LZ4_DLL_EXPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
129
|
-
<TreatWarningAsError>false</TreatWarningAsError>
|
|
130
|
-
<EnablePREfast>false</EnablePREfast>
|
|
131
|
-
<RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreaded</RuntimeLibrary>
|
|
132
|
-
</ClCompile>
|
|
133
|
-
<Link>
|
|
134
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
135
|
-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
136
|
-
<OptimizeReferences>true</OptimizeReferences>
|
|
137
|
-
</Link>
|
|
138
|
-
</ItemDefinitionGroup>
|
|
139
|
-
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
140
|
-
<ClCompile>
|
|
141
|
-
<WarningLevel>Level4</WarningLevel>
|
|
142
|
-
<PrecompiledHeader>
|
|
143
|
-
</PrecompiledHeader>
|
|
144
|
-
<Optimization>MaxSpeed</Optimization>
|
|
145
|
-
<FunctionLevelLinking>true</FunctionLevelLinking>
|
|
146
|
-
<IntrinsicFunctions>true</IntrinsicFunctions>
|
|
147
|
-
<PreprocessorDefinitions>WIN32;NDEBUG;LZ4_DLL_EXPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
148
|
-
<TreatWarningAsError>false</TreatWarningAsError>
|
|
149
|
-
<EnablePREfast>true</EnablePREfast>
|
|
150
|
-
<AdditionalOptions>/analyze:stacksize295252 %(AdditionalOptions)</AdditionalOptions>
|
|
151
|
-
<RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreaded</RuntimeLibrary>
|
|
152
|
-
</ClCompile>
|
|
153
|
-
<Link>
|
|
154
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
155
|
-
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
|
156
|
-
<OptimizeReferences>true</OptimizeReferences>
|
|
157
|
-
</Link>
|
|
158
|
-
</ItemDefinitionGroup>
|
|
159
|
-
<ItemGroup>
|
|
160
|
-
<ClInclude Include="..\..\..\lib\lz4.h" />
|
|
161
|
-
<ClInclude Include="..\..\..\lib\lz4frame.h" />
|
|
162
|
-
<ClInclude Include="..\..\..\lib\lz4frame_static.h" />
|
|
163
|
-
<ClInclude Include="..\..\..\lib\lz4hc.h" />
|
|
164
|
-
<ClInclude Include="..\..\..\lib\xxhash.h" />
|
|
165
|
-
</ItemGroup>
|
|
166
|
-
<ItemGroup>
|
|
167
|
-
<ClCompile Include="..\..\..\lib\lz4.c" />
|
|
168
|
-
<ClCompile Include="..\..\..\lib\lz4frame.c" />
|
|
169
|
-
<ClCompile Include="..\..\..\lib\lz4hc.c" />
|
|
170
|
-
<ClCompile Include="..\..\..\lib\xxhash.c" />
|
|
171
|
-
</ItemGroup>
|
|
172
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
173
|
-
<ImportGroup Label="ExtensionTargets">
|
|
174
|
-
</ImportGroup>
|
|
175
|
-
</Project>
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
// Microsoft Visual C++ generated resource script.
|
|
2
|
-
//
|
|
3
|
-
|
|
4
|
-
#include "lz4.h" /* LZ4_VERSION_STRING */
|
|
5
|
-
#define APSTUDIO_READONLY_SYMBOLS
|
|
6
|
-
#include "verrsrc.h"
|
|
7
|
-
#undef APSTUDIO_READONLY_SYMBOLS
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_ENU)
|
|
11
|
-
LANGUAGE 9, 1
|
|
12
|
-
|
|
13
|
-
/////////////////////////////////////////////////////////////////////////////
|
|
14
|
-
//
|
|
15
|
-
// Version
|
|
16
|
-
//
|
|
17
|
-
|
|
18
|
-
VS_VERSION_INFO VERSIONINFO
|
|
19
|
-
FILEVERSION LZ4_VERSION_MAJOR,LZ4_VERSION_MINOR,LZ4_VERSION_RELEASE,0
|
|
20
|
-
PRODUCTVERSION LZ4_VERSION_MAJOR,LZ4_VERSION_MINOR,LZ4_VERSION_RELEASE,0
|
|
21
|
-
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
22
|
-
#ifdef _DEBUG
|
|
23
|
-
FILEFLAGS VS_FF_DEBUG
|
|
24
|
-
#else
|
|
25
|
-
FILEFLAGS 0x0L
|
|
26
|
-
#endif
|
|
27
|
-
FILEOS VOS_NT_WINDOWS32
|
|
28
|
-
FILETYPE VFT_DLL
|
|
29
|
-
FILESUBTYPE VFT2_UNKNOWN
|
|
30
|
-
BEGIN
|
|
31
|
-
BLOCK "StringFileInfo"
|
|
32
|
-
BEGIN
|
|
33
|
-
BLOCK "040904B0"
|
|
34
|
-
BEGIN
|
|
35
|
-
VALUE "CompanyName", "Yann Collet"
|
|
36
|
-
VALUE "FileDescription", "Extremely fast compression"
|
|
37
|
-
VALUE "FileVersion", LZ4_VERSION_STRING
|
|
38
|
-
VALUE "InternalName", "lz4.dll"
|
|
39
|
-
VALUE "LegalCopyright", "Copyright (C) 2013-2020, Yann Collet"
|
|
40
|
-
VALUE "OriginalFilename", "lz4.dll"
|
|
41
|
-
VALUE "ProductName", "LZ4"
|
|
42
|
-
VALUE "ProductVersion", LZ4_VERSION_STRING
|
|
43
|
-
END
|
|
44
|
-
END
|
|
45
|
-
BLOCK "VarFileInfo"
|
|
46
|
-
BEGIN
|
|
47
|
-
VALUE "Translation", 0x0409, 1200
|
|
48
|
-
END
|
|
49
|
-
END
|
|
50
|
-
|
|
51
|
-
#endif
|