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.
Files changed (75) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/Rakefile +21 -3
  4. data/contrib/lz4/CODING_STYLE +57 -0
  5. data/contrib/lz4/LICENSE +1 -1
  6. data/contrib/lz4/Makefile.inc +17 -15
  7. data/contrib/lz4/NEWS +25 -0
  8. data/contrib/lz4/README.md +16 -5
  9. data/contrib/lz4/SECURITY.md +17 -0
  10. data/contrib/lz4/build/README.md +4 -15
  11. data/contrib/lz4/build/VS2022/_build.bat +39 -0
  12. data/contrib/lz4/build/VS2022/_setup.bat +35 -0
  13. data/contrib/lz4/build/VS2022/_test.bat +38 -0
  14. data/contrib/lz4/build/VS2022/build-and-test-win32-debug.bat +26 -0
  15. data/contrib/lz4/build/VS2022/build-and-test-win32-release.bat +26 -0
  16. data/contrib/lz4/build/VS2022/build-and-test-x64-debug.bat +26 -0
  17. data/contrib/lz4/build/VS2022/build-and-test-x64-release.bat +26 -0
  18. data/contrib/lz4/build/VS2022/datagen/datagen.vcxproj +7 -3
  19. data/contrib/lz4/build/{VS2017 → VS2022}/lz4/lz4.vcxproj +21 -7
  20. data/contrib/lz4/build/VS2022/lz4.sln +5 -2
  21. data/contrib/lz4/build/cmake/CMakeLists.txt +95 -100
  22. data/contrib/lz4/build/meson/GetLz4LibraryVersion.py +39 -0
  23. data/contrib/lz4/build/meson/README.md +34 -0
  24. data/contrib/lz4/build/meson/meson/contrib/gen_manual/meson.build +42 -0
  25. data/contrib/lz4/build/meson/meson/contrib/meson.build +11 -0
  26. data/contrib/lz4/build/meson/meson/examples/meson.build +32 -0
  27. data/contrib/lz4/build/meson/meson/lib/meson.build +87 -0
  28. data/contrib/lz4/build/meson/meson/meson.build +135 -0
  29. data/contrib/lz4/build/meson/meson/ossfuzz/meson.build +35 -0
  30. data/contrib/lz4/build/meson/meson/programs/meson.build +91 -0
  31. data/contrib/lz4/build/meson/meson/tests/meson.build +162 -0
  32. data/contrib/lz4/build/meson/meson.build +31 -0
  33. data/contrib/lz4/build/meson/meson_options.txt +44 -0
  34. data/contrib/lz4/build/visual/README.md +5 -0
  35. data/contrib/lz4/build/visual/generate_solution.cmd +55 -0
  36. data/contrib/lz4/build/visual/generate_vs2015.cmd +3 -0
  37. data/contrib/lz4/build/visual/generate_vs2017.cmd +3 -0
  38. data/contrib/lz4/build/visual/generate_vs2019.cmd +3 -0
  39. data/contrib/lz4/build/visual/generate_vs2022.cmd +3 -0
  40. data/contrib/lz4/lib/README.md +25 -1
  41. data/contrib/lz4/lib/lz4.c +206 -99
  42. data/contrib/lz4/lib/lz4.h +111 -69
  43. data/contrib/lz4/lib/lz4file.c +111 -81
  44. data/contrib/lz4/lib/lz4file.h +2 -2
  45. data/contrib/lz4/lib/lz4frame.c +179 -121
  46. data/contrib/lz4/lib/lz4frame.h +162 -103
  47. data/contrib/lz4/lib/lz4hc.c +943 -382
  48. data/contrib/lz4/lib/lz4hc.h +43 -42
  49. data/contrib/lz4/lib/xxhash.c +21 -21
  50. data/contrib/lz4/ossfuzz/decompress_fuzzer.c +1 -1
  51. data/contrib/lz4/ossfuzz/fuzz_helpers.h +1 -1
  52. data/ext/blockapi.c +11 -11
  53. data/ext/frameapi.c +23 -23
  54. metadata +34 -28
  55. data/contrib/lz4/build/VS2010/datagen/datagen.vcxproj +0 -169
  56. data/contrib/lz4/build/VS2010/frametest/frametest.vcxproj +0 -176
  57. data/contrib/lz4/build/VS2010/fullbench/fullbench.vcxproj +0 -176
  58. data/contrib/lz4/build/VS2010/fullbench-dll/fullbench-dll.vcxproj +0 -180
  59. data/contrib/lz4/build/VS2010/fuzzer/fuzzer.vcxproj +0 -173
  60. data/contrib/lz4/build/VS2010/liblz4/liblz4.vcxproj +0 -175
  61. data/contrib/lz4/build/VS2010/liblz4-dll/liblz4-dll.rc +0 -51
  62. data/contrib/lz4/build/VS2010/liblz4-dll/liblz4-dll.vcxproj +0 -179
  63. data/contrib/lz4/build/VS2010/lz4/lz4.vcxproj +0 -189
  64. data/contrib/lz4/build/VS2010/lz4.sln +0 -98
  65. data/contrib/lz4/build/VS2017/datagen/datagen.vcxproj +0 -173
  66. data/contrib/lz4/build/VS2017/frametest/frametest.vcxproj +0 -180
  67. data/contrib/lz4/build/VS2017/fullbench/fullbench.vcxproj +0 -180
  68. data/contrib/lz4/build/VS2017/fullbench-dll/fullbench-dll.vcxproj +0 -184
  69. data/contrib/lz4/build/VS2017/fuzzer/fuzzer.vcxproj +0 -177
  70. data/contrib/lz4/build/VS2017/liblz4/liblz4.vcxproj +0 -179
  71. data/contrib/lz4/build/VS2017/liblz4-dll/liblz4-dll.rc +0 -51
  72. data/contrib/lz4/build/VS2017/liblz4-dll/liblz4-dll.vcxproj +0 -183
  73. data/contrib/lz4/build/VS2017/lz4/lz4.rc +0 -51
  74. data/contrib/lz4/build/VS2017/lz4.sln +0 -103
  75. /data/contrib/lz4/build/{VS2010 → VS2022}/lz4/lz4.rc +0 -0
@@ -1,179 +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>{9800039D-4AAA-43A4-BB78-FEF6F4836927}</ProjectGuid>
23
- <Keyword>Win32Proj</Keyword>
24
- <RootNamespace>liblz4-dll</RootNamespace>
25
- <OutDir>$(SolutionDir)bin\$(Platform)_$(Configuration)\</OutDir>
26
- <IntDir>$(SolutionDir)bin\obj\$(RootNamespace)_$(Platform)_$(Configuration)\</IntDir>
27
- <ProjectName>liblz4-dll</ProjectName>
28
- </PropertyGroup>
29
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
30
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
31
- <ConfigurationType>DynamicLibrary</ConfigurationType>
32
- <UseDebugLibraries>true</UseDebugLibraries>
33
- <CharacterSet>Unicode</CharacterSet>
34
- </PropertyGroup>
35
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
36
- <ConfigurationType>DynamicLibrary</ConfigurationType>
37
- <UseDebugLibraries>true</UseDebugLibraries>
38
- <CharacterSet>Unicode</CharacterSet>
39
- </PropertyGroup>
40
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
41
- <ConfigurationType>DynamicLibrary</ConfigurationType>
42
- <UseDebugLibraries>false</UseDebugLibraries>
43
- <CharacterSet>Unicode</CharacterSet>
44
- <WholeProgramOptimization Condition="'$(EnableWholeProgramOptimization)'=='true'">true</WholeProgramOptimization>
45
- </PropertyGroup>
46
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
47
- <ConfigurationType>DynamicLibrary</ConfigurationType>
48
- <UseDebugLibraries>false</UseDebugLibraries>
49
- <CharacterSet>Unicode</CharacterSet>
50
- <WholeProgramOptimization Condition="'$(EnableWholeProgramOptimization)'=='true'">true</WholeProgramOptimization>
51
- </PropertyGroup>
52
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
53
- <ImportGroup Label="ExtensionSettings">
54
- </ImportGroup>
55
- <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
56
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
57
- </ImportGroup>
58
- <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
59
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
60
- </ImportGroup>
61
- <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
62
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
63
- </ImportGroup>
64
- <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
65
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
66
- </ImportGroup>
67
- <PropertyGroup Label="UserMacros" />
68
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
69
- <LinkIncremental>true</LinkIncremental>
70
- <TargetName>liblz4</TargetName>
71
- <IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
72
- </PropertyGroup>
73
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
74
- <LinkIncremental>true</LinkIncremental>
75
- <TargetName>liblz4</TargetName>
76
- <IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
77
- <RunCodeAnalysis>true</RunCodeAnalysis>
78
- </PropertyGroup>
79
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
80
- <LinkIncremental>false</LinkIncremental>
81
- <TargetName>liblz4</TargetName>
82
- <IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
83
- </PropertyGroup>
84
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
85
- <LinkIncremental>false</LinkIncremental>
86
- <TargetName>liblz4</TargetName>
87
- <IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\lib;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
88
- <RunCodeAnalysis>true</RunCodeAnalysis>
89
- </PropertyGroup>
90
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
91
- <ClCompile>
92
- <PrecompiledHeader>
93
- </PrecompiledHeader>
94
- <WarningLevel>Level4</WarningLevel>
95
- <Optimization>Disabled</Optimization>
96
- <PreprocessorDefinitions>WIN32;_DEBUG;LZ4_DLL_EXPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
97
- <TreatWarningAsError>true</TreatWarningAsError>
98
- <EnablePREfast>false</EnablePREfast>
99
- <RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreadedDebug</RuntimeLibrary>
100
- </ClCompile>
101
- <Link>
102
- <GenerateDebugInformation>true</GenerateDebugInformation>
103
- </Link>
104
- </ItemDefinitionGroup>
105
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
106
- <ClCompile>
107
- <PrecompiledHeader>
108
- </PrecompiledHeader>
109
- <WarningLevel>Level4</WarningLevel>
110
- <Optimization>Disabled</Optimization>
111
- <PreprocessorDefinitions>WIN32;_DEBUG;LZ4_DLL_EXPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
112
- <TreatWarningAsError>true</TreatWarningAsError>
113
- <EnablePREfast>true</EnablePREfast>
114
- <AdditionalOptions>/analyze:stacksize295252 %(AdditionalOptions)</AdditionalOptions>
115
- <RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreadedDebug</RuntimeLibrary>
116
- </ClCompile>
117
- <Link>
118
- <GenerateDebugInformation>true</GenerateDebugInformation>
119
- </Link>
120
- </ItemDefinitionGroup>
121
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
122
- <ClCompile>
123
- <WarningLevel>Level4</WarningLevel>
124
- <PrecompiledHeader>
125
- </PrecompiledHeader>
126
- <Optimization>MaxSpeed</Optimization>
127
- <FunctionLevelLinking>true</FunctionLevelLinking>
128
- <IntrinsicFunctions>true</IntrinsicFunctions>
129
- <PreprocessorDefinitions>WIN32;NDEBUG;LZ4_DLL_EXPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
130
- <TreatWarningAsError>false</TreatWarningAsError>
131
- <EnablePREfast>false</EnablePREfast>
132
- <RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreaded</RuntimeLibrary>
133
- </ClCompile>
134
- <Link>
135
- <GenerateDebugInformation>true</GenerateDebugInformation>
136
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
137
- <OptimizeReferences>true</OptimizeReferences>
138
- </Link>
139
- </ItemDefinitionGroup>
140
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
141
- <ClCompile>
142
- <WarningLevel>Level4</WarningLevel>
143
- <PrecompiledHeader>
144
- </PrecompiledHeader>
145
- <Optimization>MaxSpeed</Optimization>
146
- <FunctionLevelLinking>true</FunctionLevelLinking>
147
- <IntrinsicFunctions>true</IntrinsicFunctions>
148
- <PreprocessorDefinitions>WIN32;NDEBUG;LZ4_DLL_EXPORT=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
149
- <TreatWarningAsError>false</TreatWarningAsError>
150
- <EnablePREfast>true</EnablePREfast>
151
- <AdditionalOptions>/analyze:stacksize295252 %(AdditionalOptions)</AdditionalOptions>
152
- <RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreaded</RuntimeLibrary>
153
- </ClCompile>
154
- <Link>
155
- <GenerateDebugInformation>true</GenerateDebugInformation>
156
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
157
- <OptimizeReferences>true</OptimizeReferences>
158
- </Link>
159
- </ItemDefinitionGroup>
160
- <ItemGroup>
161
- <ClInclude Include="..\..\..\lib\lz4.h" />
162
- <ClInclude Include="..\..\..\lib\lz4frame.h" />
163
- <ClInclude Include="..\..\..\lib\lz4frame_static.h" />
164
- <ClInclude Include="..\..\..\lib\lz4hc.h" />
165
- <ClInclude Include="..\..\..\lib\xxhash.h" />
166
- </ItemGroup>
167
- <ItemGroup>
168
- <ClCompile Include="..\..\..\lib\lz4.c" />
169
- <ClCompile Include="..\..\..\lib\lz4frame.c" />
170
- <ClCompile Include="..\..\..\lib\lz4hc.c" />
171
- <ClCompile Include="..\..\..\lib\xxhash.c" />
172
- </ItemGroup>
173
- <ItemGroup>
174
- <ResourceCompile Include="liblz4-dll.rc" />
175
- </ItemGroup>
176
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
177
- <ImportGroup Label="ExtensionTargets">
178
- </ImportGroup>
179
- </Project>
@@ -1,189 +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>{E30329AC-0057-4FE0-8FDA-7F650D398C4C}</ProjectGuid>
23
- <Keyword>Win32Proj</Keyword>
24
- <RootNamespace>lz4</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;$(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;$(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;$(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;$(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
- <AdditionalDependencies>setargv.obj;%(AdditionalDependencies)</AdditionalDependencies>
100
- </Link>
101
- </ItemDefinitionGroup>
102
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
103
- <ClCompile>
104
- <PrecompiledHeader>
105
- </PrecompiledHeader>
106
- <WarningLevel>Level4</WarningLevel>
107
- <Optimization>Disabled</Optimization>
108
- <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
109
- <TreatWarningAsError>true</TreatWarningAsError>
110
- <EnablePREfast>true</EnablePREfast>
111
- <AdditionalOptions>/analyze:stacksize295252 %(AdditionalOptions)</AdditionalOptions>
112
- <RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreadedDebug</RuntimeLibrary>
113
- </ClCompile>
114
- <Link>
115
- <SubSystem>Console</SubSystem>
116
- <GenerateDebugInformation>true</GenerateDebugInformation>
117
- <AdditionalDependencies>setargv.obj;%(AdditionalDependencies)</AdditionalDependencies>
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;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
129
- <TreatWarningAsError>false</TreatWarningAsError>
130
- <EnablePREfast>false</EnablePREfast>
131
- <RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreaded</RuntimeLibrary>
132
- </ClCompile>
133
- <Link>
134
- <SubSystem>Console</SubSystem>
135
- <GenerateDebugInformation>true</GenerateDebugInformation>
136
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
137
- <OptimizeReferences>true</OptimizeReferences>
138
- <AdditionalDependencies>setargv.obj;%(AdditionalDependencies)</AdditionalDependencies>
139
- </Link>
140
- </ItemDefinitionGroup>
141
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
142
- <ClCompile>
143
- <WarningLevel>Level4</WarningLevel>
144
- <PrecompiledHeader>
145
- </PrecompiledHeader>
146
- <Optimization>MaxSpeed</Optimization>
147
- <FunctionLevelLinking>true</FunctionLevelLinking>
148
- <IntrinsicFunctions>true</IntrinsicFunctions>
149
- <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
150
- <TreatWarningAsError>false</TreatWarningAsError>
151
- <EnablePREfast>true</EnablePREfast>
152
- <AdditionalOptions>/analyze:stacksize295252 %(AdditionalOptions)</AdditionalOptions>
153
- <RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreaded</RuntimeLibrary>
154
- </ClCompile>
155
- <Link>
156
- <SubSystem>Console</SubSystem>
157
- <GenerateDebugInformation>true</GenerateDebugInformation>
158
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
159
- <OptimizeReferences>true</OptimizeReferences>
160
- <AdditionalDependencies>setargv.obj;%(AdditionalDependencies)</AdditionalDependencies>
161
- </Link>
162
- </ItemDefinitionGroup>
163
- <ItemGroup>
164
- <ClInclude Include="..\..\..\lib\lz4.h" />
165
- <ClInclude Include="..\..\..\lib\lz4frame.h" />
166
- <ClInclude Include="..\..\..\lib\lz4frame_static.h" />
167
- <ClInclude Include="..\..\..\lib\lz4hc.h" />
168
- <ClInclude Include="..\..\..\lib\xxhash.h" />
169
- <ClInclude Include="..\..\..\programs\datagen.h" />
170
- <ClInclude Include="..\..\..\programs\bench.h" />
171
- <ClInclude Include="..\..\..\programs\lz4io.h" />
172
- </ItemGroup>
173
- <ItemGroup>
174
- <ClCompile Include="..\..\..\lib\lz4.c" />
175
- <ClCompile Include="..\..\..\lib\lz4frame.c" />
176
- <ClCompile Include="..\..\..\lib\lz4hc.c" />
177
- <ClCompile Include="..\..\..\lib\xxhash.c" />
178
- <ClCompile Include="..\..\..\programs\datagen.c" />
179
- <ClCompile Include="..\..\..\programs\bench.c" />
180
- <ClCompile Include="..\..\..\programs\lz4cli.c" />
181
- <ClCompile Include="..\..\..\programs\lz4io.c" />
182
- </ItemGroup>
183
- <ItemGroup>
184
- <ResourceCompile Include="lz4.rc" />
185
- </ItemGroup>
186
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
187
- <ImportGroup Label="ExtensionTargets">
188
- </ImportGroup>
189
- </Project>
@@ -1,98 +0,0 @@
1
- Microsoft Visual Studio Solution File, Format Version 12.00
2
- # Visual Studio Express 2012 for Windows Desktop
3
- Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "lz4", "lz4\lz4.vcxproj", "{E30329AC-0057-4FE0-8FDA-7F650D398C4C}"
4
- EndProject
5
- Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "liblz4-dll", "liblz4-dll\liblz4-dll.vcxproj", "{9800039D-4AAA-43A4-BB78-FEF6F4836927}"
6
- EndProject
7
- Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "liblz4", "liblz4\liblz4.vcxproj", "{9092C5CC-3E71-41B3-BF68-4A7BDD8A5476}"
8
- EndProject
9
- Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fuzzer", "fuzzer\fuzzer.vcxproj", "{18B9F1A7-9C66-4352-898B-30804DADE0FD}"
10
- EndProject
11
- Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fullbench", "fullbench\fullbench.vcxproj", "{6A4DF4EF-C77F-43C6-8901-DDCD20879E4E}"
12
- EndProject
13
- Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "frametest", "frametest\frametest.vcxproj", "{39AD6ECC-8BAD-4368-95E4-A1AA2F077BB7}"
14
- EndProject
15
- Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "datagen", "datagen\datagen.vcxproj", "{D745AE2F-596A-403A-9B91-81A8C6779243}"
16
- EndProject
17
- Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "fullbench-dll", "fullbench-dll\fullbench-dll.vcxproj", "{13992FD2-077E-4954-B065-A428198201A9}"
18
- ProjectSection(ProjectDependencies) = postProject
19
- {9800039D-4AAA-43A4-BB78-FEF6F4836927} = {9800039D-4AAA-43A4-BB78-FEF6F4836927}
20
- EndProjectSection
21
- EndProject
22
- Global
23
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
24
- Debug|Win32 = Debug|Win32
25
- Debug|x64 = Debug|x64
26
- Release|Win32 = Release|Win32
27
- Release|x64 = Release|x64
28
- EndGlobalSection
29
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
30
- {E30329AC-0057-4FE0-8FDA-7F650D398C4C}.Debug|Win32.ActiveCfg = Debug|Win32
31
- {E30329AC-0057-4FE0-8FDA-7F650D398C4C}.Debug|Win32.Build.0 = Debug|Win32
32
- {E30329AC-0057-4FE0-8FDA-7F650D398C4C}.Debug|x64.ActiveCfg = Debug|x64
33
- {E30329AC-0057-4FE0-8FDA-7F650D398C4C}.Debug|x64.Build.0 = Debug|x64
34
- {E30329AC-0057-4FE0-8FDA-7F650D398C4C}.Release|Win32.ActiveCfg = Release|Win32
35
- {E30329AC-0057-4FE0-8FDA-7F650D398C4C}.Release|Win32.Build.0 = Release|Win32
36
- {E30329AC-0057-4FE0-8FDA-7F650D398C4C}.Release|x64.ActiveCfg = Release|x64
37
- {E30329AC-0057-4FE0-8FDA-7F650D398C4C}.Release|x64.Build.0 = Release|x64
38
- {9800039D-4AAA-43A4-BB78-FEF6F4836927}.Debug|Win32.ActiveCfg = Debug|Win32
39
- {9800039D-4AAA-43A4-BB78-FEF6F4836927}.Debug|Win32.Build.0 = Debug|Win32
40
- {9800039D-4AAA-43A4-BB78-FEF6F4836927}.Debug|x64.ActiveCfg = Debug|x64
41
- {9800039D-4AAA-43A4-BB78-FEF6F4836927}.Debug|x64.Build.0 = Debug|x64
42
- {9800039D-4AAA-43A4-BB78-FEF6F4836927}.Release|Win32.ActiveCfg = Release|Win32
43
- {9800039D-4AAA-43A4-BB78-FEF6F4836927}.Release|Win32.Build.0 = Release|Win32
44
- {9800039D-4AAA-43A4-BB78-FEF6F4836927}.Release|x64.ActiveCfg = Release|x64
45
- {9800039D-4AAA-43A4-BB78-FEF6F4836927}.Release|x64.Build.0 = Release|x64
46
- {9092C5CC-3E71-41B3-BF68-4A7BDD8A5476}.Debug|Win32.ActiveCfg = Debug|Win32
47
- {9092C5CC-3E71-41B3-BF68-4A7BDD8A5476}.Debug|Win32.Build.0 = Debug|Win32
48
- {9092C5CC-3E71-41B3-BF68-4A7BDD8A5476}.Debug|x64.ActiveCfg = Debug|x64
49
- {9092C5CC-3E71-41B3-BF68-4A7BDD8A5476}.Debug|x64.Build.0 = Debug|x64
50
- {9092C5CC-3E71-41B3-BF68-4A7BDD8A5476}.Release|Win32.ActiveCfg = Release|Win32
51
- {9092C5CC-3E71-41B3-BF68-4A7BDD8A5476}.Release|Win32.Build.0 = Release|Win32
52
- {9092C5CC-3E71-41B3-BF68-4A7BDD8A5476}.Release|x64.ActiveCfg = Release|x64
53
- {9092C5CC-3E71-41B3-BF68-4A7BDD8A5476}.Release|x64.Build.0 = Release|x64
54
- {18B9F1A7-9C66-4352-898B-30804DADE0FD}.Debug|Win32.ActiveCfg = Debug|Win32
55
- {18B9F1A7-9C66-4352-898B-30804DADE0FD}.Debug|Win32.Build.0 = Debug|Win32
56
- {18B9F1A7-9C66-4352-898B-30804DADE0FD}.Debug|x64.ActiveCfg = Debug|x64
57
- {18B9F1A7-9C66-4352-898B-30804DADE0FD}.Debug|x64.Build.0 = Debug|x64
58
- {18B9F1A7-9C66-4352-898B-30804DADE0FD}.Release|Win32.ActiveCfg = Release|Win32
59
- {18B9F1A7-9C66-4352-898B-30804DADE0FD}.Release|Win32.Build.0 = Release|Win32
60
- {18B9F1A7-9C66-4352-898B-30804DADE0FD}.Release|x64.ActiveCfg = Release|x64
61
- {18B9F1A7-9C66-4352-898B-30804DADE0FD}.Release|x64.Build.0 = Release|x64
62
- {6A4DF4EF-C77F-43C6-8901-DDCD20879E4E}.Debug|Win32.ActiveCfg = Debug|Win32
63
- {6A4DF4EF-C77F-43C6-8901-DDCD20879E4E}.Debug|Win32.Build.0 = Debug|Win32
64
- {6A4DF4EF-C77F-43C6-8901-DDCD20879E4E}.Debug|x64.ActiveCfg = Debug|x64
65
- {6A4DF4EF-C77F-43C6-8901-DDCD20879E4E}.Debug|x64.Build.0 = Debug|x64
66
- {6A4DF4EF-C77F-43C6-8901-DDCD20879E4E}.Release|Win32.ActiveCfg = Release|Win32
67
- {6A4DF4EF-C77F-43C6-8901-DDCD20879E4E}.Release|Win32.Build.0 = Release|Win32
68
- {6A4DF4EF-C77F-43C6-8901-DDCD20879E4E}.Release|x64.ActiveCfg = Release|x64
69
- {6A4DF4EF-C77F-43C6-8901-DDCD20879E4E}.Release|x64.Build.0 = Release|x64
70
- {39AD6ECC-8BAD-4368-95E4-A1AA2F077BB7}.Debug|Win32.ActiveCfg = Debug|Win32
71
- {39AD6ECC-8BAD-4368-95E4-A1AA2F077BB7}.Debug|Win32.Build.0 = Debug|Win32
72
- {39AD6ECC-8BAD-4368-95E4-A1AA2F077BB7}.Debug|x64.ActiveCfg = Debug|x64
73
- {39AD6ECC-8BAD-4368-95E4-A1AA2F077BB7}.Debug|x64.Build.0 = Debug|x64
74
- {39AD6ECC-8BAD-4368-95E4-A1AA2F077BB7}.Release|Win32.ActiveCfg = Release|Win32
75
- {39AD6ECC-8BAD-4368-95E4-A1AA2F077BB7}.Release|Win32.Build.0 = Release|Win32
76
- {39AD6ECC-8BAD-4368-95E4-A1AA2F077BB7}.Release|x64.ActiveCfg = Release|x64
77
- {39AD6ECC-8BAD-4368-95E4-A1AA2F077BB7}.Release|x64.Build.0 = Release|x64
78
- {D745AE2F-596A-403A-9B91-81A8C6779243}.Debug|Win32.ActiveCfg = Debug|Win32
79
- {D745AE2F-596A-403A-9B91-81A8C6779243}.Debug|Win32.Build.0 = Debug|Win32
80
- {D745AE2F-596A-403A-9B91-81A8C6779243}.Debug|x64.ActiveCfg = Debug|x64
81
- {D745AE2F-596A-403A-9B91-81A8C6779243}.Debug|x64.Build.0 = Debug|x64
82
- {D745AE2F-596A-403A-9B91-81A8C6779243}.Release|Win32.ActiveCfg = Release|Win32
83
- {D745AE2F-596A-403A-9B91-81A8C6779243}.Release|Win32.Build.0 = Release|Win32
84
- {D745AE2F-596A-403A-9B91-81A8C6779243}.Release|x64.ActiveCfg = Release|x64
85
- {D745AE2F-596A-403A-9B91-81A8C6779243}.Release|x64.Build.0 = Release|x64
86
- {13992FD2-077E-4954-B065-A428198201A9}.Debug|Win32.ActiveCfg = Debug|Win32
87
- {13992FD2-077E-4954-B065-A428198201A9}.Debug|Win32.Build.0 = Debug|Win32
88
- {13992FD2-077E-4954-B065-A428198201A9}.Debug|x64.ActiveCfg = Debug|x64
89
- {13992FD2-077E-4954-B065-A428198201A9}.Debug|x64.Build.0 = Debug|x64
90
- {13992FD2-077E-4954-B065-A428198201A9}.Release|Win32.ActiveCfg = Release|Win32
91
- {13992FD2-077E-4954-B065-A428198201A9}.Release|Win32.Build.0 = Release|Win32
92
- {13992FD2-077E-4954-B065-A428198201A9}.Release|x64.ActiveCfg = Release|x64
93
- {13992FD2-077E-4954-B065-A428198201A9}.Release|x64.Build.0 = Release|x64
94
- EndGlobalSection
95
- GlobalSection(SolutionProperties) = preSolution
96
- HideSolutionNode = FALSE
97
- EndGlobalSection
98
- EndGlobal
@@ -1,173 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <Project DefaultTargets="Build" ToolsVersion="15.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>{D745AE2F-596A-403A-9B91-81A8C6779243}</ProjectGuid>
23
- <Keyword>Win32Proj</Keyword>
24
- <RootNamespace>datagen</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
- <PlatformToolset>v141</PlatformToolset>
34
- </PropertyGroup>
35
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
36
- <ConfigurationType>Application</ConfigurationType>
37
- <UseDebugLibraries>true</UseDebugLibraries>
38
- <CharacterSet>Unicode</CharacterSet>
39
- <PlatformToolset>v141</PlatformToolset>
40
- </PropertyGroup>
41
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
42
- <ConfigurationType>Application</ConfigurationType>
43
- <UseDebugLibraries>false</UseDebugLibraries>
44
- <CharacterSet>Unicode</CharacterSet>
45
- <WholeProgramOptimization Condition="'$(EnableWholeProgramOptimization)'=='true'">true</WholeProgramOptimization>
46
- <PlatformToolset>v141</PlatformToolset>
47
- </PropertyGroup>
48
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
49
- <ConfigurationType>Application</ConfigurationType>
50
- <UseDebugLibraries>false</UseDebugLibraries>
51
- <CharacterSet>Unicode</CharacterSet>
52
- <WholeProgramOptimization Condition="'$(EnableWholeProgramOptimization)'=='true'">true</WholeProgramOptimization>
53
- <PlatformToolset>v141</PlatformToolset>
54
- </PropertyGroup>
55
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
56
- <ImportGroup Label="ExtensionSettings">
57
- </ImportGroup>
58
- <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
59
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
60
- </ImportGroup>
61
- <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
62
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
63
- </ImportGroup>
64
- <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
65
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
66
- </ImportGroup>
67
- <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
68
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
69
- </ImportGroup>
70
- <PropertyGroup Label="UserMacros" />
71
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
72
- <LinkIncremental>true</LinkIncremental>
73
- <IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\programs;$(SolutionDir)..\..\lib;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
74
- </PropertyGroup>
75
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
76
- <LinkIncremental>true</LinkIncremental>
77
- <IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\programs;$(SolutionDir)..\..\lib;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
78
- <RunCodeAnalysis>true</RunCodeAnalysis>
79
- </PropertyGroup>
80
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
81
- <LinkIncremental>false</LinkIncremental>
82
- <IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\programs;$(SolutionDir)..\..\lib;$(VCInstallDir)include;$(VCInstallDir)atlmfc\include;$(WindowsSDK_IncludePath);</IncludePath>
83
- </PropertyGroup>
84
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
85
- <LinkIncremental>false</LinkIncremental>
86
- <IncludePath>$(IncludePath);$(UniversalCRT_IncludePath);$(SolutionDir)..\..\programs;$(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;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
96
- <TreatWarningAsError>true</TreatWarningAsError>
97
- <EnablePREfast>false</EnablePREfast>
98
- <RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreadedDebug</RuntimeLibrary>
99
- </ClCompile>
100
- <Link>
101
- <SubSystem>Console</SubSystem>
102
- <GenerateDebugInformation>true</GenerateDebugInformation>
103
- </Link>
104
- </ItemDefinitionGroup>
105
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
106
- <ClCompile>
107
- <PrecompiledHeader>
108
- </PrecompiledHeader>
109
- <WarningLevel>Level4</WarningLevel>
110
- <Optimization>Disabled</Optimization>
111
- <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
112
- <TreatWarningAsError>true</TreatWarningAsError>
113
- <EnablePREfast>true</EnablePREfast>
114
- <AdditionalOptions>/analyze:stacksize295252 %(AdditionalOptions)</AdditionalOptions>
115
- <RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreadedDebug</RuntimeLibrary>
116
- </ClCompile>
117
- <Link>
118
- <SubSystem>Console</SubSystem>
119
- <GenerateDebugInformation>true</GenerateDebugInformation>
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;%(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
- </Link>
141
- </ItemDefinitionGroup>
142
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
143
- <ClCompile>
144
- <WarningLevel>Level4</WarningLevel>
145
- <PrecompiledHeader>
146
- </PrecompiledHeader>
147
- <Optimization>MaxSpeed</Optimization>
148
- <FunctionLevelLinking>true</FunctionLevelLinking>
149
- <IntrinsicFunctions>true</IntrinsicFunctions>
150
- <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
151
- <TreatWarningAsError>false</TreatWarningAsError>
152
- <EnablePREfast>true</EnablePREfast>
153
- <AdditionalOptions>/analyze:stacksize295252 %(AdditionalOptions)</AdditionalOptions>
154
- <RuntimeLibrary Condition="'$(UseStaticCRT)'=='true'">MultiThreaded</RuntimeLibrary>
155
- </ClCompile>
156
- <Link>
157
- <SubSystem>Console</SubSystem>
158
- <GenerateDebugInformation>true</GenerateDebugInformation>
159
- <EnableCOMDATFolding>true</EnableCOMDATFolding>
160
- <OptimizeReferences>true</OptimizeReferences>
161
- </Link>
162
- </ItemDefinitionGroup>
163
- <ItemGroup>
164
- <ClCompile Include="..\..\..\programs\datagen.c" />
165
- <ClCompile Include="..\..\..\tests\datagencli.c" />
166
- </ItemGroup>
167
- <ItemGroup>
168
- <ClInclude Include="..\..\..\programs\datagen.h" />
169
- </ItemGroup>
170
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
171
- <ImportGroup Label="ExtensionTargets">
172
- </ImportGroup>
173
- </Project>