usb 2.12.0 → 2.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -1
- package/README.md +1 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/usb/bindings.js +1 -1
- package/dist/usb/bindings.js.map +1 -1
- package/dist/usb/capability.js.map +1 -1
- package/dist/usb/device.js.map +1 -1
- package/dist/usb/endpoint.d.ts +1 -0
- package/dist/usb/endpoint.js +2 -2
- package/dist/usb/endpoint.js.map +1 -1
- package/dist/usb/index.js.map +1 -1
- package/dist/usb/interface.js +2 -2
- package/dist/usb/interface.js.map +1 -1
- package/dist/webusb/index.d.ts +2 -2
- package/dist/webusb/index.js.map +1 -1
- package/dist/webusb/webusb-device.js +10 -10
- package/dist/webusb/webusb-device.js.map +1 -1
- package/libusb/.codespellrc +3 -0
- package/libusb/.private/appveyor_build.sh +5 -1
- package/libusb/.private/ci-build.sh +26 -1
- package/libusb/.private/ci-container-build.sh +2 -5
- package/libusb/.private/wbs.txt +5 -8
- package/libusb/AUTHORS +22 -0
- package/libusb/ChangeLog +19 -2
- package/libusb/HACKING +25 -0
- package/libusb/INSTALL_WIN.txt +11 -10
- package/libusb/NEWS +2 -2
- package/libusb/README +3 -2
- package/libusb/README.git +1 -1
- package/libusb/Xcode/common.xcconfig +8 -1
- package/libusb/Xcode/config.h +0 -6
- package/libusb/Xcode/debug.xcconfig +4 -1
- package/libusb/Xcode/libusb.xcconfig +1 -1
- package/libusb/Xcode/libusb.xcodeproj/project.pbxproj +60 -30
- package/libusb/Xcode/libusb_debug.xcconfig +1 -1
- package/libusb/Xcode/libusb_release.xcconfig +1 -1
- package/libusb/Xcode/release.xcconfig +1 -1
- package/libusb/appveyor.yml +33 -9
- package/libusb/configure.ac +68 -37
- package/libusb/examples/dpfp.c +2 -2
- package/libusb/examples/fxload.c +2 -2
- package/libusb/examples/hotplugtest.c +28 -13
- package/libusb/examples/listdevs.c +1 -1
- package/libusb/examples/sam3u_benchmark.c +1 -1
- package/libusb/examples/testlibusb.c +1 -1
- package/libusb/examples/xusb.c +74 -19
- package/libusb/libusb/Makefile.am +11 -1
- package/libusb/libusb/core.c +364 -186
- package/libusb/libusb/descriptor.c +276 -16
- package/libusb/libusb/hotplug.c +5 -4
- package/libusb/libusb/io.c +72 -61
- package/libusb/libusb/libusb-1.0.def +14 -1
- package/libusb/libusb/libusb.h +245 -76
- package/libusb/libusb/libusbi.h +35 -13
- package/libusb/libusb/os/darwin_usb.c +542 -279
- package/libusb/libusb/os/darwin_usb.h +44 -115
- package/libusb/libusb/os/emscripten_webusb.cpp +870 -0
- package/libusb/libusb/os/events_posix.c +40 -0
- package/libusb/libusb/os/events_posix.h +3 -0
- package/libusb/libusb/os/linux_usbfs.c +27 -16
- package/libusb/libusb/os/netbsd_usb.c +36 -36
- package/libusb/libusb/os/openbsd_usb.c +34 -34
- package/libusb/libusb/os/sunos_usb.c +25 -15
- package/libusb/libusb/os/threads_posix.c +1 -5
- package/libusb/libusb/os/windows_common.c +13 -5
- package/libusb/libusb/os/windows_common.h +8 -0
- package/libusb/libusb/os/windows_winusb.c +366 -174
- package/libusb/libusb/os/windows_winusb.h +13 -9
- package/libusb/libusb/strerror.c +5 -5
- package/libusb/libusb/sync.c +24 -19
- package/libusb/libusb/version.h +1 -1
- package/libusb/libusb/version_nano.h +1 -1
- package/libusb/msvc/Base.props +60 -0
- package/libusb/msvc/Configuration.Application.props +7 -0
- package/libusb/msvc/Configuration.Base.props +47 -0
- package/libusb/msvc/Configuration.DynamicLibrary.props +21 -0
- package/libusb/msvc/Configuration.StaticLibrary.props +7 -0
- package/libusb/msvc/ProjectConfigurations.Base.props +69 -0
- package/libusb/msvc/build_all.ps1 +17 -0
- package/libusb/msvc/config.h +2 -2
- package/libusb/msvc/dpfp.vcxproj +33 -0
- package/libusb/msvc/dpfp_threaded.vcxproj +38 -0
- package/libusb/msvc/fxload.vcxproj +46 -0
- package/libusb/msvc/getopt.vcxproj +33 -0
- package/libusb/msvc/hotplugtest.vcxproj +32 -0
- package/libusb/msvc/init_context.vcxproj +35 -0
- package/libusb/msvc/libusb.sln +542 -0
- package/libusb/msvc/libusb_dll.vcxproj +61 -0
- package/libusb/msvc/libusb_static.vcxproj +49 -0
- package/libusb/msvc/listdevs.vcxproj +32 -0
- package/libusb/msvc/sam3u_benchmark.vcxproj +33 -0
- package/libusb/msvc/set_option.vcxproj +35 -0
- package/libusb/msvc/stress.vcxproj +35 -0
- package/libusb/msvc/stress_mt.vcxproj +33 -0
- package/libusb/msvc/testlibusb.vcxproj +32 -0
- package/libusb/msvc/xusb.vcxproj +38 -0
- package/libusb/tests/Makefile.am +25 -3
- package/libusb/tests/init_context.c +153 -0
- package/libusb/tests/macos.c +130 -0
- package/libusb/tests/set_option.c +253 -0
- package/libusb/tests/stress.c +17 -14
- package/libusb/tests/stress_mt.c +265 -0
- package/libusb/tests/testlib.c +1 -1
- package/libusb/tests/umockdev.c +9 -9
- package/libusb/tests/webusb-test-shim/index.js +12 -0
- package/libusb/tests/webusb-test-shim/package-lock.json +50 -0
- package/libusb/tests/webusb-test-shim/package.json +10 -0
- package/package.json +7 -7
- package/prebuilds/android-arm/node.napi.armv7.node +0 -0
- package/prebuilds/android-arm64/node.napi.armv8.node +0 -0
- package/prebuilds/darwin-x64+arm64/node.napi.node +0 -0
- package/prebuilds/linux-arm/node.napi.armv6.node +0 -0
- package/prebuilds/linux-arm/node.napi.armv7.node +0 -0
- package/prebuilds/linux-arm64/node.napi.armv8.node +0 -0
- package/prebuilds/linux-ia32/node.napi.node +0 -0
- package/prebuilds/linux-x64/node.napi.glibc.node +0 -0
- package/prebuilds/linux-x64/node.napi.musl.node +0 -0
- package/prebuilds/win32-arm64/node.napi.node +0 -0
- package/prebuilds/win32-ia32/node.napi.node +0 -0
- package/prebuilds/win32-x64/node.napi.node +0 -0
- package/src/device.cc +15 -5
- package/libusb/msvc/dpfp_2013.vcxproj +0 -87
- package/libusb/msvc/dpfp_2013.vcxproj.filters +0 -26
- package/libusb/msvc/dpfp_2015.vcxproj +0 -87
- package/libusb/msvc/dpfp_2015.vcxproj.filters +0 -26
- package/libusb/msvc/dpfp_2017.vcxproj +0 -106
- package/libusb/msvc/dpfp_2017.vcxproj.filters +0 -26
- package/libusb/msvc/dpfp_2019.vcxproj +0 -106
- package/libusb/msvc/dpfp_2019.vcxproj.filters +0 -26
- package/libusb/msvc/dpfp_threaded_2013.vcxproj +0 -87
- package/libusb/msvc/dpfp_threaded_2013.vcxproj.filters +0 -26
- package/libusb/msvc/dpfp_threaded_2015.vcxproj +0 -87
- package/libusb/msvc/dpfp_threaded_2015.vcxproj.filters +0 -26
- package/libusb/msvc/dpfp_threaded_2017.vcxproj +0 -106
- package/libusb/msvc/dpfp_threaded_2017.vcxproj.filters +0 -26
- package/libusb/msvc/dpfp_threaded_2019.vcxproj +0 -106
- package/libusb/msvc/dpfp_threaded_2019.vcxproj.filters +0 -26
- package/libusb/msvc/fxload_2013.vcxproj +0 -94
- package/libusb/msvc/fxload_2013.vcxproj.filters +0 -35
- package/libusb/msvc/fxload_2015.vcxproj +0 -94
- package/libusb/msvc/fxload_2015.vcxproj.filters +0 -35
- package/libusb/msvc/fxload_2017.vcxproj +0 -113
- package/libusb/msvc/fxload_2017.vcxproj.filters +0 -35
- package/libusb/msvc/fxload_2019.vcxproj +0 -113
- package/libusb/msvc/fxload_2019.vcxproj.filters +0 -35
- package/libusb/msvc/getopt_2013.vcxproj +0 -72
- package/libusb/msvc/getopt_2013.vcxproj.filters +0 -26
- package/libusb/msvc/getopt_2015.vcxproj +0 -73
- package/libusb/msvc/getopt_2015.vcxproj.filters +0 -26
- package/libusb/msvc/getopt_2017.vcxproj +0 -92
- package/libusb/msvc/getopt_2017.vcxproj.filters +0 -26
- package/libusb/msvc/getopt_2019.vcxproj +0 -92
- package/libusb/msvc/getopt_2019.vcxproj.filters +0 -26
- package/libusb/msvc/hotplugtest_2013.vcxproj +0 -86
- package/libusb/msvc/hotplugtest_2013.vcxproj.filters +0 -23
- package/libusb/msvc/hotplugtest_2015.vcxproj +0 -86
- package/libusb/msvc/hotplugtest_2015.vcxproj.filters +0 -23
- package/libusb/msvc/hotplugtest_2017.vcxproj +0 -105
- package/libusb/msvc/hotplugtest_2017.vcxproj.filters +0 -23
- package/libusb/msvc/hotplugtest_2019.vcxproj +0 -105
- package/libusb/msvc/hotplugtest_2019.vcxproj.filters +0 -23
- package/libusb/msvc/libusb_2013.sln +0 -137
- package/libusb/msvc/libusb_2015.sln +0 -137
- package/libusb/msvc/libusb_2017.sln +0 -240
- package/libusb/msvc/libusb_2019.sln +0 -240
- package/libusb/msvc/libusb_dll_2013.vcxproj +0 -104
- package/libusb/msvc/libusb_dll_2013.vcxproj.filters +0 -94
- package/libusb/msvc/libusb_dll_2015.vcxproj +0 -105
- package/libusb/msvc/libusb_dll_2015.vcxproj.filters +0 -94
- package/libusb/msvc/libusb_dll_2017.vcxproj +0 -124
- package/libusb/msvc/libusb_dll_2017.vcxproj.filters +0 -94
- package/libusb/msvc/libusb_dll_2019.vcxproj +0 -124
- package/libusb/msvc/libusb_dll_2019.vcxproj.filters +0 -94
- package/libusb/msvc/libusb_static_2013.vcxproj +0 -94
- package/libusb/msvc/libusb_static_2013.vcxproj.filters +0 -80
- package/libusb/msvc/libusb_static_2015.vcxproj +0 -95
- package/libusb/msvc/libusb_static_2015.vcxproj.filters +0 -80
- package/libusb/msvc/libusb_static_2017.vcxproj +0 -114
- package/libusb/msvc/libusb_static_2017.vcxproj.filters +0 -80
- package/libusb/msvc/libusb_static_2019.vcxproj +0 -114
- package/libusb/msvc/libusb_static_2019.vcxproj.filters +0 -80
- package/libusb/msvc/listdevs_2013.vcxproj +0 -86
- package/libusb/msvc/listdevs_2013.vcxproj.filters +0 -23
- package/libusb/msvc/listdevs_2015.vcxproj +0 -86
- package/libusb/msvc/listdevs_2015.vcxproj.filters +0 -23
- package/libusb/msvc/listdevs_2017.vcxproj +0 -105
- package/libusb/msvc/listdevs_2017.vcxproj.filters +0 -23
- package/libusb/msvc/listdevs_2019.vcxproj +0 -105
- package/libusb/msvc/listdevs_2019.vcxproj.filters +0 -23
- package/libusb/msvc/sam3u_benchmark_2013.vcxproj +0 -87
- package/libusb/msvc/sam3u_benchmark_2013.vcxproj.filters +0 -26
- package/libusb/msvc/sam3u_benchmark_2015.vcxproj +0 -87
- package/libusb/msvc/sam3u_benchmark_2015.vcxproj.filters +0 -26
- package/libusb/msvc/sam3u_benchmark_2017.vcxproj +0 -106
- package/libusb/msvc/sam3u_benchmark_2017.vcxproj.filters +0 -26
- package/libusb/msvc/sam3u_benchmark_2019.vcxproj +0 -106
- package/libusb/msvc/sam3u_benchmark_2019.vcxproj.filters +0 -26
- package/libusb/msvc/stress_2013.vcxproj +0 -89
- package/libusb/msvc/stress_2013.vcxproj.filters +0 -32
- package/libusb/msvc/stress_2015.vcxproj +0 -89
- package/libusb/msvc/stress_2015.vcxproj.filters +0 -32
- package/libusb/msvc/stress_2017.vcxproj +0 -108
- package/libusb/msvc/stress_2017.vcxproj.filters +0 -32
- package/libusb/msvc/stress_2019.vcxproj +0 -108
- package/libusb/msvc/stress_2019.vcxproj.filters +0 -32
- package/libusb/msvc/testlibusb_2013.vcxproj +0 -86
- package/libusb/msvc/testlibusb_2013.vcxproj.filters +0 -23
- package/libusb/msvc/testlibusb_2015.vcxproj +0 -86
- package/libusb/msvc/testlibusb_2015.vcxproj.filters +0 -23
- package/libusb/msvc/testlibusb_2017.vcxproj +0 -105
- package/libusb/msvc/testlibusb_2017.vcxproj.filters +0 -23
- package/libusb/msvc/testlibusb_2019.vcxproj +0 -105
- package/libusb/msvc/testlibusb_2019.vcxproj.filters +0 -23
- package/libusb/msvc/xusb_2013.vcxproj +0 -86
- package/libusb/msvc/xusb_2013.vcxproj.filters +0 -23
- package/libusb/msvc/xusb_2015.vcxproj +0 -86
- package/libusb/msvc/xusb_2015.vcxproj.filters +0 -23
- package/libusb/msvc/xusb_2017.vcxproj +0 -105
- package/libusb/msvc/xusb_2017.vcxproj.filters +0 -23
- package/libusb/msvc/xusb_2019.vcxproj +0 -105
- package/libusb/msvc/xusb_2019.vcxproj.filters +0 -23
- package/prebuilds/android-arm/usb.armv7.node +0 -0
- package/prebuilds/android-arm64/usb.armv8.node +0 -0
- package/prebuilds/darwin-x64+arm64/usb.node +0 -0
- package/prebuilds/linux-arm/usb.armv6.node +0 -0
- package/prebuilds/linux-arm/usb.armv7.node +0 -0
- package/prebuilds/linux-arm64/usb.armv8.node +0 -0
- package/prebuilds/linux-ia32/usb.node +0 -0
- package/prebuilds/linux-x64/usb.glibc.node +0 -0
- package/prebuilds/linux-x64/usb.musl.node +0 -0
- package/prebuilds/win32-arm64/usb.node +0 -0
- package/prebuilds/win32-ia32/usb.node +0 -0
- package/prebuilds/win32-x64/usb.node +0 -0
|
@@ -1,94 +0,0 @@
|
|
|
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>fxload</ProjectName>
|
|
23
|
-
<ProjectGuid>{9E166F7A-A793-9FB6-0A67-F0AED8AE8C88}</ProjectGuid>
|
|
24
|
-
<RootNamespace>examples</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)\examples\$(ProjectName)\</IntDir>
|
|
44
|
-
<OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\</OutDir>
|
|
45
|
-
</PropertyGroup>
|
|
46
|
-
<ItemDefinitionGroup>
|
|
47
|
-
<ClCompile>
|
|
48
|
-
<AdditionalIncludeDirectories>.;.\getopt;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
49
|
-
<PreprocessorDefinitions>__GNU_LIBRARY__;_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="..\examples\ezusb.c" />
|
|
73
|
-
<ClCompile Include="..\examples\fxload.c" />
|
|
74
|
-
</ItemGroup>
|
|
75
|
-
<ItemGroup>
|
|
76
|
-
<ClInclude Include=".\config.h" />
|
|
77
|
-
<ClInclude Include=".\getopt\getopt.h" />
|
|
78
|
-
<ClInclude Include="..\examples\ezusb.h" />
|
|
79
|
-
<ClInclude Include="..\libusb\libusb.h" />
|
|
80
|
-
</ItemGroup>
|
|
81
|
-
<ItemGroup>
|
|
82
|
-
<ProjectReference Include=".\getopt_2013.vcxproj">
|
|
83
|
-
<Project>{ae83e1b4-ce06-47ee-b7a3-c3a1d7c2d71e}</Project>
|
|
84
|
-
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
85
|
-
</ProjectReference>
|
|
86
|
-
<ProjectReference Include=".\libusb_static_2013.vcxproj">
|
|
87
|
-
<Project>{349ee8f9-7d25-4909-aaf5-ff3fade72187}</Project>
|
|
88
|
-
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
89
|
-
</ProjectReference>
|
|
90
|
-
</ItemGroup>
|
|
91
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
92
|
-
<ImportGroup Label="ExtensionTargets">
|
|
93
|
-
</ImportGroup>
|
|
94
|
-
</Project>
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup>
|
|
4
|
-
<Filter Include="Source Files">
|
|
5
|
-
<UniqueIdentifier>{777c7051-d00a-4cb4-9bd0-1c8f843183db}</UniqueIdentifier>
|
|
6
|
-
<Extensions>c</Extensions>
|
|
7
|
-
</Filter>
|
|
8
|
-
<Filter Include="Header Files">
|
|
9
|
-
<UniqueIdentifier>{1cfdb0a6-840c-4444-a5c3-e3cd508bf25b}</UniqueIdentifier>
|
|
10
|
-
<Extensions>h</Extensions>
|
|
11
|
-
</Filter>
|
|
12
|
-
</ItemGroup>
|
|
13
|
-
<ItemGroup>
|
|
14
|
-
<ClInclude Include=".\config.h">
|
|
15
|
-
<Filter>Header Files</Filter>
|
|
16
|
-
</ClInclude>
|
|
17
|
-
<ClInclude Include=".\getopt\getopt.h">
|
|
18
|
-
<Filter>Header Files</Filter>
|
|
19
|
-
</ClInclude>
|
|
20
|
-
<ClInclude Include="..\examples\ezusb.h">
|
|
21
|
-
<Filter>Header Files</Filter>
|
|
22
|
-
</ClInclude>
|
|
23
|
-
<ClInclude Include="..\libusb\libusb.h">
|
|
24
|
-
<Filter>Header Files</Filter>
|
|
25
|
-
</ClInclude>
|
|
26
|
-
</ItemGroup>
|
|
27
|
-
<ItemGroup>
|
|
28
|
-
<ClCompile Include="..\examples\ezusb.c">
|
|
29
|
-
<Filter>Source Files</Filter>
|
|
30
|
-
</ClCompile>
|
|
31
|
-
<ClCompile Include="..\examples\fxload.c">
|
|
32
|
-
<Filter>Source Files</Filter>
|
|
33
|
-
</ClCompile>
|
|
34
|
-
</ItemGroup>
|
|
35
|
-
</Project>
|
|
@@ -1,94 +0,0 @@
|
|
|
1
|
-
<?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>fxload</ProjectName>
|
|
23
|
-
<ProjectGuid>{9E166F7A-A793-9FB6-0A67-F0AED8AE8C88}</ProjectGuid>
|
|
24
|
-
<RootNamespace>examples</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>v140</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)\examples\$(ProjectName)\</IntDir>
|
|
44
|
-
<OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\</OutDir>
|
|
45
|
-
</PropertyGroup>
|
|
46
|
-
<ItemDefinitionGroup>
|
|
47
|
-
<ClCompile>
|
|
48
|
-
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
|
|
49
|
-
<AdditionalIncludeDirectories>.;.\getopt;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
50
|
-
<PreprocessorDefinitions>__GNU_LIBRARY__;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
51
|
-
<WarningLevel>Level3</WarningLevel>
|
|
52
|
-
</ClCompile>
|
|
53
|
-
<ClCompile Condition="'$(Configuration)'=='Debug'">
|
|
54
|
-
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
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="..\examples\ezusb.c" />
|
|
73
|
-
<ClCompile Include="..\examples\fxload.c" />
|
|
74
|
-
</ItemGroup>
|
|
75
|
-
<ItemGroup>
|
|
76
|
-
<ClInclude Include=".\config.h" />
|
|
77
|
-
<ClInclude Include=".\getopt\getopt.h" />
|
|
78
|
-
<ClInclude Include="..\examples\ezusb.h" />
|
|
79
|
-
<ClInclude Include="..\libusb\libusb.h" />
|
|
80
|
-
</ItemGroup>
|
|
81
|
-
<ItemGroup>
|
|
82
|
-
<ProjectReference Include=".\getopt_2015.vcxproj">
|
|
83
|
-
<Project>{ae83e1b4-ce06-47ee-b7a3-c3a1d7c2d71e}</Project>
|
|
84
|
-
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
85
|
-
</ProjectReference>
|
|
86
|
-
<ProjectReference Include=".\libusb_static_2015.vcxproj">
|
|
87
|
-
<Project>{349ee8f9-7d25-4909-aaf5-ff3fade72187}</Project>
|
|
88
|
-
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
89
|
-
</ProjectReference>
|
|
90
|
-
</ItemGroup>
|
|
91
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
92
|
-
<ImportGroup Label="ExtensionTargets">
|
|
93
|
-
</ImportGroup>
|
|
94
|
-
</Project>
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup>
|
|
4
|
-
<Filter Include="Source Files">
|
|
5
|
-
<UniqueIdentifier>{777c7051-d00a-4cb4-9bd0-1c8f843183db}</UniqueIdentifier>
|
|
6
|
-
<Extensions>c</Extensions>
|
|
7
|
-
</Filter>
|
|
8
|
-
<Filter Include="Header Files">
|
|
9
|
-
<UniqueIdentifier>{1cfdb0a6-840c-4444-a5c3-e3cd508bf25b}</UniqueIdentifier>
|
|
10
|
-
<Extensions>h</Extensions>
|
|
11
|
-
</Filter>
|
|
12
|
-
</ItemGroup>
|
|
13
|
-
<ItemGroup>
|
|
14
|
-
<ClInclude Include=".\config.h">
|
|
15
|
-
<Filter>Header Files</Filter>
|
|
16
|
-
</ClInclude>
|
|
17
|
-
<ClInclude Include=".\getopt\getopt.h">
|
|
18
|
-
<Filter>Header Files</Filter>
|
|
19
|
-
</ClInclude>
|
|
20
|
-
<ClInclude Include="..\examples\ezusb.h">
|
|
21
|
-
<Filter>Header Files</Filter>
|
|
22
|
-
</ClInclude>
|
|
23
|
-
<ClInclude Include="..\libusb\libusb.h">
|
|
24
|
-
<Filter>Header Files</Filter>
|
|
25
|
-
</ClInclude>
|
|
26
|
-
</ItemGroup>
|
|
27
|
-
<ItemGroup>
|
|
28
|
-
<ClCompile Include="..\examples\ezusb.c">
|
|
29
|
-
<Filter>Source Files</Filter>
|
|
30
|
-
</ClCompile>
|
|
31
|
-
<ClCompile Include="..\examples\fxload.c">
|
|
32
|
-
<Filter>Source Files</Filter>
|
|
33
|
-
</ClCompile>
|
|
34
|
-
</ItemGroup>
|
|
35
|
-
</Project>
|
|
@@ -1,113 +0,0 @@
|
|
|
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|ARM">
|
|
5
|
-
<Configuration>Debug</Configuration>
|
|
6
|
-
<Platform>ARM</Platform>
|
|
7
|
-
</ProjectConfiguration>
|
|
8
|
-
<ProjectConfiguration Include="Debug|ARM64">
|
|
9
|
-
<Configuration>Debug</Configuration>
|
|
10
|
-
<Platform>ARM64</Platform>
|
|
11
|
-
</ProjectConfiguration>
|
|
12
|
-
<ProjectConfiguration Include="Debug|Win32">
|
|
13
|
-
<Configuration>Debug</Configuration>
|
|
14
|
-
<Platform>Win32</Platform>
|
|
15
|
-
</ProjectConfiguration>
|
|
16
|
-
<ProjectConfiguration Include="Debug|x64">
|
|
17
|
-
<Configuration>Debug</Configuration>
|
|
18
|
-
<Platform>x64</Platform>
|
|
19
|
-
</ProjectConfiguration>
|
|
20
|
-
<ProjectConfiguration Include="Release|ARM">
|
|
21
|
-
<Configuration>Release</Configuration>
|
|
22
|
-
<Platform>ARM</Platform>
|
|
23
|
-
</ProjectConfiguration>
|
|
24
|
-
<ProjectConfiguration Include="Release|ARM64">
|
|
25
|
-
<Configuration>Release</Configuration>
|
|
26
|
-
<Platform>ARM64</Platform>
|
|
27
|
-
</ProjectConfiguration>
|
|
28
|
-
<ProjectConfiguration Include="Release|Win32">
|
|
29
|
-
<Configuration>Release</Configuration>
|
|
30
|
-
<Platform>Win32</Platform>
|
|
31
|
-
</ProjectConfiguration>
|
|
32
|
-
<ProjectConfiguration Include="Release|x64">
|
|
33
|
-
<Configuration>Release</Configuration>
|
|
34
|
-
<Platform>x64</Platform>
|
|
35
|
-
</ProjectConfiguration>
|
|
36
|
-
</ItemGroup>
|
|
37
|
-
<PropertyGroup Label="Globals">
|
|
38
|
-
<ProjectName>fxload</ProjectName>
|
|
39
|
-
<ProjectGuid>{9E166F7A-A793-9FB6-0A67-F0AED8AE8C88}</ProjectGuid>
|
|
40
|
-
<RootNamespace>examples</RootNamespace>
|
|
41
|
-
<Keyword>Win32Proj</Keyword>
|
|
42
|
-
<WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
|
|
43
|
-
<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
|
|
44
|
-
<WindowsTargetPlatformVersion Condition="'$(Platform)'=='ARM' Or '$(Platform)'=='ARM64'">10.0.17763.0</WindowsTargetPlatformVersion>
|
|
45
|
-
</PropertyGroup>
|
|
46
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
47
|
-
<PropertyGroup Label="Configuration">
|
|
48
|
-
<ConfigurationType>Application</ConfigurationType>
|
|
49
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
50
|
-
<PlatformToolset>v141</PlatformToolset>
|
|
51
|
-
<WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization>
|
|
52
|
-
</PropertyGroup>
|
|
53
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
54
|
-
<ImportGroup Label="ExtensionSettings">
|
|
55
|
-
</ImportGroup>
|
|
56
|
-
<ImportGroup Label="PropertySheets">
|
|
57
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
58
|
-
</ImportGroup>
|
|
59
|
-
<PropertyGroup Label="UserMacros" />
|
|
60
|
-
<PropertyGroup>
|
|
61
|
-
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
62
|
-
<IntDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\$(ProjectName)\</IntDir>
|
|
63
|
-
<OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\</OutDir>
|
|
64
|
-
</PropertyGroup>
|
|
65
|
-
<ItemDefinitionGroup>
|
|
66
|
-
<ClCompile>
|
|
67
|
-
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
|
|
68
|
-
<AdditionalIncludeDirectories>.;.\getopt;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
69
|
-
<PreprocessorDefinitions>__GNU_LIBRARY__;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
70
|
-
<WarningLevel>Level3</WarningLevel>
|
|
71
|
-
</ClCompile>
|
|
72
|
-
<ClCompile Condition="'$(Configuration)'=='Debug'">
|
|
73
|
-
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
74
|
-
<Optimization>Disabled</Optimization>
|
|
75
|
-
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
76
|
-
</ClCompile>
|
|
77
|
-
<ClCompile Condition="'$(Configuration)'=='Release'">
|
|
78
|
-
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
79
|
-
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
80
|
-
</ClCompile>
|
|
81
|
-
<Link>
|
|
82
|
-
<ProgramDatabaseFile>$(TargetDir)$(ProjectName).pdb</ProgramDatabaseFile>
|
|
83
|
-
<SubSystem>Console</SubSystem>
|
|
84
|
-
<AdditionalDependencies>kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
85
|
-
</Link>
|
|
86
|
-
<Link Condition="'$(Configuration)'=='Debug'">
|
|
87
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
88
|
-
</Link>
|
|
89
|
-
</ItemDefinitionGroup>
|
|
90
|
-
<ItemGroup>
|
|
91
|
-
<ClCompile Include="..\examples\ezusb.c" />
|
|
92
|
-
<ClCompile Include="..\examples\fxload.c" />
|
|
93
|
-
</ItemGroup>
|
|
94
|
-
<ItemGroup>
|
|
95
|
-
<ClInclude Include=".\config.h" />
|
|
96
|
-
<ClInclude Include=".\getopt\getopt.h" />
|
|
97
|
-
<ClInclude Include="..\examples\ezusb.h" />
|
|
98
|
-
<ClInclude Include="..\libusb\libusb.h" />
|
|
99
|
-
</ItemGroup>
|
|
100
|
-
<ItemGroup>
|
|
101
|
-
<ProjectReference Include=".\getopt_2017.vcxproj">
|
|
102
|
-
<Project>{ae83e1b4-ce06-47ee-b7a3-c3a1d7c2d71e}</Project>
|
|
103
|
-
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
104
|
-
</ProjectReference>
|
|
105
|
-
<ProjectReference Include=".\libusb_static_2017.vcxproj">
|
|
106
|
-
<Project>{349ee8f9-7d25-4909-aaf5-ff3fade72187}</Project>
|
|
107
|
-
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
108
|
-
</ProjectReference>
|
|
109
|
-
</ItemGroup>
|
|
110
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
111
|
-
<ImportGroup Label="ExtensionTargets">
|
|
112
|
-
</ImportGroup>
|
|
113
|
-
</Project>
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup>
|
|
4
|
-
<Filter Include="Source Files">
|
|
5
|
-
<UniqueIdentifier>{777c7051-d00a-4cb4-9bd0-1c8f843183db}</UniqueIdentifier>
|
|
6
|
-
<Extensions>c</Extensions>
|
|
7
|
-
</Filter>
|
|
8
|
-
<Filter Include="Header Files">
|
|
9
|
-
<UniqueIdentifier>{1cfdb0a6-840c-4444-a5c3-e3cd508bf25b}</UniqueIdentifier>
|
|
10
|
-
<Extensions>h</Extensions>
|
|
11
|
-
</Filter>
|
|
12
|
-
</ItemGroup>
|
|
13
|
-
<ItemGroup>
|
|
14
|
-
<ClInclude Include=".\config.h">
|
|
15
|
-
<Filter>Header Files</Filter>
|
|
16
|
-
</ClInclude>
|
|
17
|
-
<ClInclude Include=".\getopt\getopt.h">
|
|
18
|
-
<Filter>Header Files</Filter>
|
|
19
|
-
</ClInclude>
|
|
20
|
-
<ClInclude Include="..\examples\ezusb.h">
|
|
21
|
-
<Filter>Header Files</Filter>
|
|
22
|
-
</ClInclude>
|
|
23
|
-
<ClInclude Include="..\libusb\libusb.h">
|
|
24
|
-
<Filter>Header Files</Filter>
|
|
25
|
-
</ClInclude>
|
|
26
|
-
</ItemGroup>
|
|
27
|
-
<ItemGroup>
|
|
28
|
-
<ClCompile Include="..\examples\ezusb.c">
|
|
29
|
-
<Filter>Source Files</Filter>
|
|
30
|
-
</ClCompile>
|
|
31
|
-
<ClCompile Include="..\examples\fxload.c">
|
|
32
|
-
<Filter>Source Files</Filter>
|
|
33
|
-
</ClCompile>
|
|
34
|
-
</ItemGroup>
|
|
35
|
-
</Project>
|
|
@@ -1,113 +0,0 @@
|
|
|
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|ARM">
|
|
5
|
-
<Configuration>Debug</Configuration>
|
|
6
|
-
<Platform>ARM</Platform>
|
|
7
|
-
</ProjectConfiguration>
|
|
8
|
-
<ProjectConfiguration Include="Debug|ARM64">
|
|
9
|
-
<Configuration>Debug</Configuration>
|
|
10
|
-
<Platform>ARM64</Platform>
|
|
11
|
-
</ProjectConfiguration>
|
|
12
|
-
<ProjectConfiguration Include="Debug|Win32">
|
|
13
|
-
<Configuration>Debug</Configuration>
|
|
14
|
-
<Platform>Win32</Platform>
|
|
15
|
-
</ProjectConfiguration>
|
|
16
|
-
<ProjectConfiguration Include="Debug|x64">
|
|
17
|
-
<Configuration>Debug</Configuration>
|
|
18
|
-
<Platform>x64</Platform>
|
|
19
|
-
</ProjectConfiguration>
|
|
20
|
-
<ProjectConfiguration Include="Release|ARM">
|
|
21
|
-
<Configuration>Release</Configuration>
|
|
22
|
-
<Platform>ARM</Platform>
|
|
23
|
-
</ProjectConfiguration>
|
|
24
|
-
<ProjectConfiguration Include="Release|ARM64">
|
|
25
|
-
<Configuration>Release</Configuration>
|
|
26
|
-
<Platform>ARM64</Platform>
|
|
27
|
-
</ProjectConfiguration>
|
|
28
|
-
<ProjectConfiguration Include="Release|Win32">
|
|
29
|
-
<Configuration>Release</Configuration>
|
|
30
|
-
<Platform>Win32</Platform>
|
|
31
|
-
</ProjectConfiguration>
|
|
32
|
-
<ProjectConfiguration Include="Release|x64">
|
|
33
|
-
<Configuration>Release</Configuration>
|
|
34
|
-
<Platform>x64</Platform>
|
|
35
|
-
</ProjectConfiguration>
|
|
36
|
-
</ItemGroup>
|
|
37
|
-
<PropertyGroup Label="Globals">
|
|
38
|
-
<ProjectName>fxload</ProjectName>
|
|
39
|
-
<ProjectGuid>{9E166F7A-A793-9FB6-0A67-F0AED8AE8C88}</ProjectGuid>
|
|
40
|
-
<RootNamespace>examples</RootNamespace>
|
|
41
|
-
<Keyword>Win32Proj</Keyword>
|
|
42
|
-
<WindowsSDKDesktopARMSupport>true</WindowsSDKDesktopARMSupport>
|
|
43
|
-
<WindowsSDKDesktopARM64Support>true</WindowsSDKDesktopARM64Support>
|
|
44
|
-
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
|
45
|
-
</PropertyGroup>
|
|
46
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
47
|
-
<PropertyGroup Label="Configuration">
|
|
48
|
-
<ConfigurationType>Application</ConfigurationType>
|
|
49
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
50
|
-
<PlatformToolset>v142</PlatformToolset>
|
|
51
|
-
<WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization>
|
|
52
|
-
</PropertyGroup>
|
|
53
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
54
|
-
<ImportGroup Label="ExtensionSettings">
|
|
55
|
-
</ImportGroup>
|
|
56
|
-
<ImportGroup Label="PropertySheets">
|
|
57
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
58
|
-
</ImportGroup>
|
|
59
|
-
<PropertyGroup Label="UserMacros" />
|
|
60
|
-
<PropertyGroup>
|
|
61
|
-
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
62
|
-
<IntDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\$(ProjectName)\</IntDir>
|
|
63
|
-
<OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\examples\</OutDir>
|
|
64
|
-
</PropertyGroup>
|
|
65
|
-
<ItemDefinitionGroup>
|
|
66
|
-
<ClCompile>
|
|
67
|
-
<AdditionalOptions>/utf-8 %(AdditionalOptions)</AdditionalOptions>
|
|
68
|
-
<AdditionalIncludeDirectories>.;.\getopt;..\libusb;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
69
|
-
<PreprocessorDefinitions>__GNU_LIBRARY__;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
70
|
-
<WarningLevel>Level3</WarningLevel>
|
|
71
|
-
</ClCompile>
|
|
72
|
-
<ClCompile Condition="'$(Configuration)'=='Debug'">
|
|
73
|
-
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
74
|
-
<Optimization>Disabled</Optimization>
|
|
75
|
-
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
76
|
-
</ClCompile>
|
|
77
|
-
<ClCompile Condition="'$(Configuration)'=='Release'">
|
|
78
|
-
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
79
|
-
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
80
|
-
</ClCompile>
|
|
81
|
-
<Link>
|
|
82
|
-
<ProgramDatabaseFile>$(TargetDir)$(ProjectName).pdb</ProgramDatabaseFile>
|
|
83
|
-
<SubSystem>Console</SubSystem>
|
|
84
|
-
<AdditionalDependencies>kernel32.lib;%(AdditionalDependencies)</AdditionalDependencies>
|
|
85
|
-
</Link>
|
|
86
|
-
<Link Condition="'$(Configuration)'=='Debug'">
|
|
87
|
-
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
88
|
-
</Link>
|
|
89
|
-
</ItemDefinitionGroup>
|
|
90
|
-
<ItemGroup>
|
|
91
|
-
<ClCompile Include="..\examples\ezusb.c" />
|
|
92
|
-
<ClCompile Include="..\examples\fxload.c" />
|
|
93
|
-
</ItemGroup>
|
|
94
|
-
<ItemGroup>
|
|
95
|
-
<ClInclude Include=".\config.h" />
|
|
96
|
-
<ClInclude Include=".\getopt\getopt.h" />
|
|
97
|
-
<ClInclude Include="..\examples\ezusb.h" />
|
|
98
|
-
<ClInclude Include="..\libusb\libusb.h" />
|
|
99
|
-
</ItemGroup>
|
|
100
|
-
<ItemGroup>
|
|
101
|
-
<ProjectReference Include=".\getopt_2019.vcxproj">
|
|
102
|
-
<Project>{ae83e1b4-ce06-47ee-b7a3-c3a1d7c2d71e}</Project>
|
|
103
|
-
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
104
|
-
</ProjectReference>
|
|
105
|
-
<ProjectReference Include=".\libusb_static_2019.vcxproj">
|
|
106
|
-
<Project>{349ee8f9-7d25-4909-aaf5-ff3fade72187}</Project>
|
|
107
|
-
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
108
|
-
</ProjectReference>
|
|
109
|
-
</ItemGroup>
|
|
110
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
111
|
-
<ImportGroup Label="ExtensionTargets">
|
|
112
|
-
</ImportGroup>
|
|
113
|
-
</Project>
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ItemGroup>
|
|
4
|
-
<Filter Include="Source Files">
|
|
5
|
-
<UniqueIdentifier>{777c7051-d00a-4cb4-9bd0-1c8f843183db}</UniqueIdentifier>
|
|
6
|
-
<Extensions>c</Extensions>
|
|
7
|
-
</Filter>
|
|
8
|
-
<Filter Include="Header Files">
|
|
9
|
-
<UniqueIdentifier>{1cfdb0a6-840c-4444-a5c3-e3cd508bf25b}</UniqueIdentifier>
|
|
10
|
-
<Extensions>h</Extensions>
|
|
11
|
-
</Filter>
|
|
12
|
-
</ItemGroup>
|
|
13
|
-
<ItemGroup>
|
|
14
|
-
<ClInclude Include=".\config.h">
|
|
15
|
-
<Filter>Header Files</Filter>
|
|
16
|
-
</ClInclude>
|
|
17
|
-
<ClInclude Include=".\getopt\getopt.h">
|
|
18
|
-
<Filter>Header Files</Filter>
|
|
19
|
-
</ClInclude>
|
|
20
|
-
<ClInclude Include="..\examples\ezusb.h">
|
|
21
|
-
<Filter>Header Files</Filter>
|
|
22
|
-
</ClInclude>
|
|
23
|
-
<ClInclude Include="..\libusb\libusb.h">
|
|
24
|
-
<Filter>Header Files</Filter>
|
|
25
|
-
</ClInclude>
|
|
26
|
-
</ItemGroup>
|
|
27
|
-
<ItemGroup>
|
|
28
|
-
<ClCompile Include="..\examples\ezusb.c">
|
|
29
|
-
<Filter>Source Files</Filter>
|
|
30
|
-
</ClCompile>
|
|
31
|
-
<ClCompile Include="..\examples\fxload.c">
|
|
32
|
-
<Filter>Source Files</Filter>
|
|
33
|
-
</ClCompile>
|
|
34
|
-
</ItemGroup>
|
|
35
|
-
</Project>
|
|
@@ -1,72 +0,0 @@
|
|
|
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>getopt</ProjectName>
|
|
23
|
-
<ProjectGuid>{AE83E1B4-CE06-47EE-B7A3-C3A1D7C2D71E}</ProjectGuid>
|
|
24
|
-
<RootNamespace>getopt</RootNamespace>
|
|
25
|
-
</PropertyGroup>
|
|
26
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
|
27
|
-
<PropertyGroup Label="Configuration">
|
|
28
|
-
<ConfigurationType>StaticLibrary</ConfigurationType>
|
|
29
|
-
<CharacterSet>Unicode</CharacterSet>
|
|
30
|
-
<PlatformToolset>v120</PlatformToolset>
|
|
31
|
-
<WholeProgramOptimization Condition="'$(Configuration)'=='Release'">true</WholeProgramOptimization>
|
|
32
|
-
</PropertyGroup>
|
|
33
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
|
34
|
-
<ImportGroup Label="ExtensionSettings">
|
|
35
|
-
</ImportGroup>
|
|
36
|
-
<ImportGroup Label="PropertySheets">
|
|
37
|
-
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
|
38
|
-
</ImportGroup>
|
|
39
|
-
<PropertyGroup Label="UserMacros" />
|
|
40
|
-
<PropertyGroup>
|
|
41
|
-
<_ProjectFileVersion>10.0.30319.1</_ProjectFileVersion>
|
|
42
|
-
<IntDir>$(ProjectDir)..\$(Platform)\$(Configuration)\lib\$(ProjectName)\</IntDir>
|
|
43
|
-
<OutDir>$(ProjectDir)..\$(Platform)\$(Configuration)\lib\</OutDir>
|
|
44
|
-
</PropertyGroup>
|
|
45
|
-
<ItemDefinitionGroup>
|
|
46
|
-
<ClCompile>
|
|
47
|
-
<AdditionalIncludeDirectories>.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
48
|
-
<PreprocessorDefinitions>HAVE_STRING_H;_LIB;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
49
|
-
<WarningLevel>Level3</WarningLevel>
|
|
50
|
-
</ClCompile>
|
|
51
|
-
<ClCompile Condition="'$(Configuration)'=='Debug'">
|
|
52
|
-
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
|
|
53
|
-
<Optimization>Disabled</Optimization>
|
|
54
|
-
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
|
|
55
|
-
</ClCompile>
|
|
56
|
-
<ClCompile Condition="'$(Configuration)'=='Release'">
|
|
57
|
-
<Optimization>MaxSpeed</Optimization>
|
|
58
|
-
<PreprocessorDefinitions>NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
59
|
-
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
|
|
60
|
-
</ClCompile>
|
|
61
|
-
</ItemDefinitionGroup>
|
|
62
|
-
<ItemGroup>
|
|
63
|
-
<ClCompile Include=".\getopt\getopt.c" />
|
|
64
|
-
<ClCompile Include=".\getopt\getopt1.c" />
|
|
65
|
-
</ItemGroup>
|
|
66
|
-
<ItemGroup>
|
|
67
|
-
<ClInclude Include=".\getopt\getopt.h" />
|
|
68
|
-
</ItemGroup>
|
|
69
|
-
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
|
70
|
-
<ImportGroup Label="ExtensionTargets">
|
|
71
|
-
</ImportGroup>
|
|
72
|
-
</Project>
|