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>{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 <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)..\..\lib;$(SolutionDir)..\..\programs;$(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)..\..\lib;$(SolutionDir)..\..\programs;$(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)..\..\lib;$(SolutionDir)..\..\programs;$(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)..\..\lib;$(SolutionDir)..\..\programs;$(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="..\..\..\lib\lz4.c" /> 165 <ClCompile Include="..\..\..\lib\lz4hc.c" /> 166 <ClCompile Include="..\..\..\lib\xxhash.c" /> 167 <ClCompile Include="..\..\..\tests\fuzzer.c" /> 168 </ItemGroup> 169 <ItemGroup> 170 <ClInclude Include="..\..\..\lib\lz4.h" /> 171 <ClInclude Include="..\..\..\lib\lz4hc.h" /> 172 <ClInclude Include="..\..\..\lib\xxhash.h" /> 173 </ItemGroup> 174 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 175 <ImportGroup Label="ExtensionTargets"> 176 </ImportGroup> 177</Project>