Joshua Blake | 805cc3e | 2013-12-08 22:58:17 -0500 | [diff] [blame] | 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>xusb</ProjectName> |
| 23 | <ProjectGuid>{3F3138D0-7AB7-4268-9BF3-1A3EA5503A11}</ProjectGuid> |
| 24 | <RootNamespace>examples</RootNamespace> |
| 25 | <Keyword>Win32Proj</Keyword> |
| 26 | </PropertyGroup> |
| 27 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
Chris Dickens | 0aac390 | 2018-03-12 10:39:26 -0700 | [diff] [blame] | 28 | <PropertyGroup Label="Configuration"> |
Joshua Blake | 805cc3e | 2013-12-08 22:58:17 -0500 | [diff] [blame] | 29 | <ConfigurationType>Application</ConfigurationType> |
| 30 | <CharacterSet>Unicode</CharacterSet> |
| 31 | <PlatformToolset>v120</PlatformToolset> |
Chris Dickens | 0aac390 | 2018-03-12 10:39:26 -0700 | [diff] [blame] | 32 | <WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization> |
Joshua Blake | 805cc3e | 2013-12-08 22:58:17 -0500 | [diff] [blame] | 33 | </PropertyGroup> |
| 34 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |
| 35 | <ImportGroup Label="ExtensionSettings"> |
| 36 | </ImportGroup> |
Chris Dickens | 0aac390 | 2018-03-12 10:39:26 -0700 | [diff] [blame] | 37 | <ImportGroup Label="PropertySheets"> |
Joshua Blake | 805cc3e | 2013-12-08 22:58:17 -0500 | [diff] [blame] | 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> |
RipleyTom | 8436ba6 | 2019-05-02 16:13:20 +0200 | [diff] [blame] | 43 | <IntDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\$(ProjectName)\</IntDir> |
| 44 | <OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\</OutDir> |
Joshua Blake | 805cc3e | 2013-12-08 22:58:17 -0500 | [diff] [blame] | 45 | </PropertyGroup> |
Chris Dickens | 0aac390 | 2018-03-12 10:39:26 -0700 | [diff] [blame] | 46 | <ItemDefinitionGroup> |
Joshua Blake | 805cc3e | 2013-12-08 22:58:17 -0500 | [diff] [blame] | 47 | <ClCompile> |
Chris Dickens | f2e551a | 2020-11-27 15:22:29 -0800 | [diff] [blame] | 48 | <AdditionalIncludeDirectories>.;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
Chris Dickens | 0aac390 | 2018-03-12 10:39:26 -0700 | [diff] [blame] | 49 | <PreprocessorDefinitions>_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 50 | <WarningLevel>Level3</WarningLevel> |
| 51 | </ClCompile> |
| 52 | <ClCompile Condition="'$(Configuration)'=='Debug'"> |
| 53 | <DebugInformationFormat>ProgramDatabase</DebugInformationFormat> |
Joshua Blake | 805cc3e | 2013-12-08 22:58:17 -0500 | [diff] [blame] | 54 | <Optimization>Disabled</Optimization> |
Joshua Blake | 805cc3e | 2013-12-08 22:58:17 -0500 | [diff] [blame] | 55 | <MinimalRebuild>true</MinimalRebuild> |
| 56 | <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> |
Joshua Blake | 805cc3e | 2013-12-08 22:58:17 -0500 | [diff] [blame] | 57 | </ClCompile> |
Chris Dickens | 0aac390 | 2018-03-12 10:39:26 -0700 | [diff] [blame] | 58 | <ClCompile Condition="'$(Configuration)'=='Release'"> |
| 59 | <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
Joshua Blake | 805cc3e | 2013-12-08 22:58:17 -0500 | [diff] [blame] | 60 | <RuntimeLibrary>MultiThreaded</RuntimeLibrary> |
Joshua Blake | 805cc3e | 2013-12-08 22:58:17 -0500 | [diff] [blame] | 61 | </ClCompile> |
| 62 | <Link> |
Chris Dickens | 0aac390 | 2018-03-12 10:39:26 -0700 | [diff] [blame] | 63 | <ProgramDatabaseFile>$(TargetDir)$(ProjectName).pdb</ProgramDatabaseFile> |
Joshua Blake | 805cc3e | 2013-12-08 22:58:17 -0500 | [diff] [blame] | 64 | <SubSystem>Console</SubSystem> |
Chris Dickens | de4a59a | 2020-01-21 15:38:56 -0800 | [diff] [blame] | 65 | <AdditionalDependencies>kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies> |
Joshua Blake | 805cc3e | 2013-12-08 22:58:17 -0500 | [diff] [blame] | 66 | </Link> |
Chris Dickens | 0aac390 | 2018-03-12 10:39:26 -0700 | [diff] [blame] | 67 | <Link Condition="'$(Configuration)'=='Debug'"> |
| 68 | <GenerateDebugInformation>true</GenerateDebugInformation> |
Joshua Blake | 805cc3e | 2013-12-08 22:58:17 -0500 | [diff] [blame] | 69 | </Link> |
| 70 | </ItemDefinitionGroup> |
| 71 | <ItemGroup> |
| 72 | <ClCompile Include="..\examples\xusb.c" /> |
| 73 | </ItemGroup> |
| 74 | <ItemGroup> |
Chris Dickens | 1be2ed9 | 2020-11-27 15:56:02 -0800 | [diff] [blame] | 75 | <ClInclude Include="..\libusb\libusb.h" /> |
| 76 | </ItemGroup> |
| 77 | <ItemGroup> |
Joshua Blake | 805cc3e | 2013-12-08 22:58:17 -0500 | [diff] [blame] | 78 | <ProjectReference Include=".\libusb_static_2013.vcxproj"> |
| 79 | <Project>{349ee8f9-7d25-4909-aaf5-ff3fade72187}</Project> |
| 80 | <ReferenceOutputAssembly>false</ReferenceOutputAssembly> |
| 81 | </ProjectReference> |
| 82 | </ItemGroup> |
| 83 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
| 84 | <ImportGroup Label="ExtensionTargets"> |
| 85 | </ImportGroup> |
Chris Dickens | f90d076 | 2020-01-20 18:02:19 -0800 | [diff] [blame] | 86 | </Project> |