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> 174