blob: 1b5d944b597facc0e37889c31d83b2c0c34a5d31 [file] [log] [blame]
Brent Rectora34ba282015-07-25 01:36:56 -07001<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" ToolsVersion="14.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 Dickens0aac3902018-03-12 10:39:26 -070028 <PropertyGroup Label="Configuration">
Brent Rectora34ba282015-07-25 01:36:56 -070029 <ConfigurationType>Application</ConfigurationType>
30 <CharacterSet>Unicode</CharacterSet>
31 <PlatformToolset>v140</PlatformToolset>
Chris Dickens0aac3902018-03-12 10:39:26 -070032 <WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization>
Brent Rectora34ba282015-07-25 01:36:56 -070033 </PropertyGroup>
34 <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
35 <ImportGroup Label="ExtensionSettings">
36 </ImportGroup>
Chris Dickens0aac3902018-03-12 10:39:26 -070037 <ImportGroup Label="PropertySheets">
Brent Rectora34ba282015-07-25 01:36:56 -070038 <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>
RipleyTom8436ba62019-05-02 16:13:20 +020043 <IntDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\$(ProjectName)\</IntDir>
44 <OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\</OutDir>
Brent Rectora34ba282015-07-25 01:36:56 -070045 </PropertyGroup>
Chris Dickens0aac3902018-03-12 10:39:26 -070046 <ItemDefinitionGroup>
Brent Rectora34ba282015-07-25 01:36:56 -070047 <ClCompile>
RipleyTom77037c42019-05-02 17:43:36 +020048 <AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
Chris Dickensf2e551a2020-11-27 15:22:29 -080049 <AdditionalIncludeDirectories>.;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
Chris Dickens0aac3902018-03-12 10:39:26 -070050 <PreprocessorDefinitions>_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
51 <WarningLevel>Level3</WarningLevel>
52 </ClCompile>
53 <ClCompile Condition="'$(Configuration)'=='Debug'">
54 <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
Brent Rectora34ba282015-07-25 01:36:56 -070055 <Optimization>Disabled</Optimization>
Brent Rectora34ba282015-07-25 01:36:56 -070056 <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
Brent Rectora34ba282015-07-25 01:36:56 -070057 </ClCompile>
Chris Dickens0aac3902018-03-12 10:39:26 -070058 <ClCompile Condition="'$(Configuration)'=='Release'">
59 <PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
Brent Rectora34ba282015-07-25 01:36:56 -070060 <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
Brent Rectora34ba282015-07-25 01:36:56 -070061 </ClCompile>
62 <Link>
Chris Dickens0aac3902018-03-12 10:39:26 -070063 <ProgramDatabaseFile>$(TargetDir)$(ProjectName).pdb</ProgramDatabaseFile>
Brent Rectora34ba282015-07-25 01:36:56 -070064 <SubSystem>Console</SubSystem>
Chris Dickensde4a59a2020-01-21 15:38:56 -080065 <AdditionalDependencies>kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
Brent Rectora34ba282015-07-25 01:36:56 -070066 </Link>
Chris Dickens0aac3902018-03-12 10:39:26 -070067 <Link Condition="'$(Configuration)'=='Debug'">
68 <GenerateDebugInformation>true</GenerateDebugInformation>
Brent Rectora34ba282015-07-25 01:36:56 -070069 </Link>
70 </ItemDefinitionGroup>
71 <ItemGroup>
72 <ClCompile Include="..\examples\xusb.c" />
73 </ItemGroup>
74 <ItemGroup>
Chris Dickens1be2ed92020-11-27 15:56:02 -080075 <ClInclude Include="..\libusb\libusb.h" />
76 </ItemGroup>
77 <ItemGroup>
Brent Rectora34ba282015-07-25 01:36:56 -070078 <ProjectReference Include=".\libusb_static_2015.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 Dickensf90d0762020-01-20 18:02:19 -080086</Project>