1<?xml version="1.0" encoding="utf-8"?> 2<Project DefaultTargets="Build" ToolsVersion="12.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 <ProjectName>stress</ProjectName> 23 <ProjectGuid>{53942EFF-C810-458D-B3CB-EE5CE9F1E781}</ProjectGuid> 24 <RootNamespace>tests</RootNamespace> 25 <Keyword>Win32Proj</Keyword> 26 </PropertyGroup> 27 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> 28 <PropertyGroup Label="Configuration"> 29 <ConfigurationType>Application</ConfigurationType> 30 <CharacterSet>Unicode</CharacterSet> 31 <PlatformToolset>v120</PlatformToolset> 32 <WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization> 33 </PropertyGroup> 34 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> 35 <ImportGroup Label="ExtensionSettings"> 36 </ImportGroup> 37 <ImportGroup Label="PropertySheets"> 38 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> 39 </ImportGroup> 40 <PropertyGroup Label="UserMacros" /> 41 <PropertyGroup> 42 <_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion> 43 <IntDir>$(ProjectDir)..\$(Platform)\$(Configuration)\tests\$(ProjectName)\</IntDir> 44 <OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\tests\</OutDir> 45 </PropertyGroup> 46 <ItemDefinitionGroup> 47 <ClCompile> 48 <AdditionalIncludeDirectories>.;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> 49 <PreprocessorDefinitions>_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> 50 <WarningLevel>Level3</WarningLevel> 51 </ClCompile> 52 <ClCompile Condition="'$(Configuration)'=='Debug'"> 53 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> 54 <MinimalRebuild>true</MinimalRebuild> 55 <Optimization>Disabled</Optimization> 56 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> 57 </ClCompile> 58 <ClCompile Condition="'$(Configuration)'=='Release'"> 59 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> 60 <RuntimeLibrary>MultiThreaded</RuntimeLibrary> 61 </ClCompile> 62 <Link> 63 <ProgramDatabaseFile>$(TargetDir)$(ProjectName).pdb</ProgramDatabaseFile> 64 <SubSystem>Console</SubSystem> 65 <AdditionalDependencies>kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies> 66 </Link> 67 <Link Condition="'$(Configuration)'=='Debug'"> 68 <GenerateDebugInformation>true</GenerateDebugInformation> 69 </Link> 70 </ItemDefinitionGroup> 71 <ItemGroup> 72 <ClCompile Include="..\tests\stress.c" /> 73 <ClCompile Include="..\tests\testlib.c" /> 74 </ItemGroup> 75 <ItemGroup> 76 <ClInclude Include=".\config.h" /> 77 <ClInclude Include="..\libusb\libusb.h" /> 78 <ClInclude Include="..\tests\libusb_testlib.h" /> 79 </ItemGroup> 80 <ItemGroup> 81 <ProjectReference Include=".\libusb_static_2013.vcxproj"> 82 <Project>{349ee8f9-7d25-4909-aaf5-ff3fade72187}</Project> 83 <ReferenceOutputAssembly>false</ReferenceOutputAssembly> 84 </ProjectReference> 85 </ItemGroup> 86 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> 87 <ImportGroup Label="ExtensionTargets"> 88 </ImportGroup> 89</Project>