usb 1.7.2-prebuild

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.
Files changed (183) hide show
  1. package/.github/workflows/prebuild.yml +62 -0
  2. package/.gitmodules +3 -0
  3. package/LICENSE +7 -0
  4. package/Readme.md +339 -0
  5. package/binding.gyp +90 -0
  6. package/libusb/.gitattributes +11 -0
  7. package/libusb/.private/README.txt +5 -0
  8. package/libusb/.private/bd.cmd +89 -0
  9. package/libusb/.private/bm.sh +54 -0
  10. package/libusb/.private/bwince.cmd +57 -0
  11. package/libusb/.private/post-rewrite.sh +28 -0
  12. package/libusb/.private/pre-commit.sh +42 -0
  13. package/libusb/.private/wbs.txt +61 -0
  14. package/libusb/.private/wbs_wince.txt +42 -0
  15. package/libusb/AUTHORS +78 -0
  16. package/libusb/COPYING +504 -0
  17. package/libusb/ChangeLog +211 -0
  18. package/libusb/INSTALL +234 -0
  19. package/libusb/INSTALL_WIN.txt +73 -0
  20. package/libusb/Makefile.am +28 -0
  21. package/libusb/NEWS +2 -0
  22. package/libusb/PORTING +94 -0
  23. package/libusb/README +28 -0
  24. package/libusb/README.git +41 -0
  25. package/libusb/TODO +2 -0
  26. package/libusb/Xcode/common.xcconfig +49 -0
  27. package/libusb/Xcode/debug.xcconfig +29 -0
  28. package/libusb/Xcode/libusb.xcconfig +21 -0
  29. package/libusb/Xcode/libusb.xcodeproj/project.pbxproj +1 -0
  30. package/libusb/Xcode/libusb_debug.xcconfig +21 -0
  31. package/libusb/Xcode/libusb_release.xcconfig +21 -0
  32. package/libusb/Xcode/release.xcconfig +30 -0
  33. package/libusb/android/README +114 -0
  34. package/libusb/android/jni/Android.mk +23 -0
  35. package/libusb/android/jni/Application.mk +24 -0
  36. package/libusb/android/jni/examples.mk +134 -0
  37. package/libusb/android/jni/libusb.mk +54 -0
  38. package/libusb/android/jni/tests.mk +56 -0
  39. package/libusb/autogen.sh +8 -0
  40. package/libusb/bootstrap.sh +19 -0
  41. package/libusb/configure.ac +304 -0
  42. package/libusb/doc/Makefile.am +9 -0
  43. package/libusb/doc/doxygen.cfg.in +1288 -0
  44. package/libusb/doc/libusb.png +0 -0
  45. package/libusb/examples/Makefile.am +19 -0
  46. package/libusb/examples/dpfp.c +506 -0
  47. package/libusb/examples/dpfp_threaded.c +544 -0
  48. package/libusb/examples/ezusb.c +831 -0
  49. package/libusb/examples/ezusb.h +120 -0
  50. package/libusb/examples/fxload.c +287 -0
  51. package/libusb/examples/getopt/getopt.c +1060 -0
  52. package/libusb/examples/getopt/getopt.h +180 -0
  53. package/libusb/examples/getopt/getopt1.c +188 -0
  54. package/libusb/examples/hotplugtest.c +104 -0
  55. package/libusb/examples/listdevs.c +71 -0
  56. package/libusb/examples/sam3u_benchmark.c +193 -0
  57. package/libusb/examples/xusb.c +1129 -0
  58. package/libusb/libusb/Makefile.am +75 -0
  59. package/libusb/libusb/core.c +2342 -0
  60. package/libusb/libusb/descriptor.c +1199 -0
  61. package/libusb/libusb/hotplug.c +327 -0
  62. package/libusb/libusb/hotplug.h +82 -0
  63. package/libusb/libusb/io.c +2631 -0
  64. package/libusb/libusb/libusb-1.0.def +166 -0
  65. package/libusb/libusb/libusb-1.0.rc +61 -0
  66. package/libusb/libusb/libusb.h +1998 -0
  67. package/libusb/libusb/libusbi.h +1040 -0
  68. package/libusb/libusb/os/darwin_usb.c +2009 -0
  69. package/libusb/libusb/os/darwin_usb.h +162 -0
  70. package/libusb/libusb/os/linux_netlink.c +369 -0
  71. package/libusb/libusb/os/linux_udev.c +307 -0
  72. package/libusb/libusb/os/linux_usbfs.c +2695 -0
  73. package/libusb/libusb/os/linux_usbfs.h +192 -0
  74. package/libusb/libusb/os/netbsd_usb.c +738 -0
  75. package/libusb/libusb/os/openbsd_usb.c +832 -0
  76. package/libusb/libusb/os/poll_posix.c +51 -0
  77. package/libusb/libusb/os/poll_posix.h +11 -0
  78. package/libusb/libusb/os/poll_windows.c +796 -0
  79. package/libusb/libusb/os/poll_windows.h +131 -0
  80. package/libusb/libusb/os/threads_posix.c +82 -0
  81. package/libusb/libusb/os/threads_posix.h +50 -0
  82. package/libusb/libusb/os/threads_windows.c +212 -0
  83. package/libusb/libusb/os/threads_windows.h +87 -0
  84. package/libusb/libusb/os/wince_usb.c +1032 -0
  85. package/libusb/libusb/os/wince_usb.h +131 -0
  86. package/libusb/libusb/os/windows_common.h +108 -0
  87. package/libusb/libusb/os/windows_usb.c +5347 -0
  88. package/libusb/libusb/os/windows_usb.h +971 -0
  89. package/libusb/libusb/strerror.c +199 -0
  90. package/libusb/libusb/sync.c +307 -0
  91. package/libusb/libusb/version.h +18 -0
  92. package/libusb/libusb/version_nano.h +1 -0
  93. package/libusb/libusb-1.0.pc.in +11 -0
  94. package/libusb/msvc/config.h +50 -0
  95. package/libusb/msvc/ddk_build.cmd +175 -0
  96. package/libusb/msvc/errno.h +102 -0
  97. package/libusb/msvc/fxload_2010.vcxproj +170 -0
  98. package/libusb/msvc/fxload_2010.vcxproj.filters +25 -0
  99. package/libusb/msvc/fxload_2012.vcxproj +174 -0
  100. package/libusb/msvc/fxload_2012.vcxproj.filters +25 -0
  101. package/libusb/msvc/fxload_2013.vcxproj +174 -0
  102. package/libusb/msvc/fxload_sources +23 -0
  103. package/libusb/msvc/getopt_2005.vcproj +288 -0
  104. package/libusb/msvc/getopt_2010.vcxproj +131 -0
  105. package/libusb/msvc/getopt_2010.vcxproj.filters +26 -0
  106. package/libusb/msvc/getopt_2012.vcxproj +136 -0
  107. package/libusb/msvc/getopt_2012.vcxproj.filters +26 -0
  108. package/libusb/msvc/getopt_2013.vcxproj +136 -0
  109. package/libusb/msvc/getopt_sources +20 -0
  110. package/libusb/msvc/hotplugtest_2010.vcxproj +163 -0
  111. package/libusb/msvc/hotplugtest_2010.vcxproj.filters +14 -0
  112. package/libusb/msvc/hotplugtest_2012.vcxproj +167 -0
  113. package/libusb/msvc/hotplugtest_2012.vcxproj.filters +14 -0
  114. package/libusb/msvc/hotplugtest_2013.vcxproj +167 -0
  115. package/libusb/msvc/hotplugtest_sources +20 -0
  116. package/libusb/msvc/inttypes.h +295 -0
  117. package/libusb/msvc/libusb.dsw +71 -0
  118. package/libusb/msvc/libusb_2005.sln +95 -0
  119. package/libusb/msvc/libusb_2010.sln +94 -0
  120. package/libusb/msvc/libusb_2012.sln +94 -0
  121. package/libusb/msvc/libusb_2013.sln +100 -0
  122. package/libusb/msvc/libusb_2015.sln +100 -0
  123. package/libusb/msvc/libusb_dll.dsp +194 -0
  124. package/libusb/msvc/libusb_dll_2005.vcproj +436 -0
  125. package/libusb/msvc/libusb_dll_2010.vcxproj +170 -0
  126. package/libusb/msvc/libusb_dll_2010.vcxproj.filters +81 -0
  127. package/libusb/msvc/libusb_dll_2012.vcxproj +175 -0
  128. package/libusb/msvc/libusb_dll_2012.vcxproj.filters +84 -0
  129. package/libusb/msvc/libusb_dll_2013.vcxproj +175 -0
  130. package/libusb/msvc/libusb_dll_wince.vcproj +1243 -0
  131. package/libusb/msvc/libusb_sources +38 -0
  132. package/libusb/msvc/libusb_static.dsp +174 -0
  133. package/libusb/msvc/libusb_static_2005.vcproj +362 -0
  134. package/libusb/msvc/libusb_static_2010.vcxproj +156 -0
  135. package/libusb/msvc/libusb_static_2010.vcxproj.filters +74 -0
  136. package/libusb/msvc/libusb_static_2012.vcxproj +160 -0
  137. package/libusb/msvc/libusb_static_2012.vcxproj.filters +74 -0
  138. package/libusb/msvc/libusb_static_2013.vcxproj +160 -0
  139. package/libusb/msvc/libusb_static_wince.vcproj +1185 -0
  140. package/libusb/msvc/libusb_wince.sln +246 -0
  141. package/libusb/msvc/listdevs.dsp +103 -0
  142. package/libusb/msvc/listdevs_2005.vcproj +360 -0
  143. package/libusb/msvc/listdevs_2010.vcxproj +165 -0
  144. package/libusb/msvc/listdevs_2010.vcxproj.filters +14 -0
  145. package/libusb/msvc/listdevs_2012.vcxproj +169 -0
  146. package/libusb/msvc/listdevs_2012.vcxproj.filters +14 -0
  147. package/libusb/msvc/listdevs_2013.vcxproj +169 -0
  148. package/libusb/msvc/listdevs_sources +19 -0
  149. package/libusb/msvc/listdevs_wince.vcproj +1120 -0
  150. package/libusb/msvc/missing.c +80 -0
  151. package/libusb/msvc/missing.h +32 -0
  152. package/libusb/msvc/stdint.h +256 -0
  153. package/libusb/msvc/stress_2005.vcproj +390 -0
  154. package/libusb/msvc/stress_2010.vcxproj +167 -0
  155. package/libusb/msvc/stress_2010.vcxproj.filters +25 -0
  156. package/libusb/msvc/stress_2012.vcxproj +171 -0
  157. package/libusb/msvc/stress_2012.vcxproj.filters +25 -0
  158. package/libusb/msvc/stress_2013.vcxproj +171 -0
  159. package/libusb/msvc/stress_wince.vcproj +1128 -0
  160. package/libusb/msvc/xusb.dsp +102 -0
  161. package/libusb/msvc/xusb_2005.vcproj +344 -0
  162. package/libusb/msvc/xusb_2010.vcxproj +163 -0
  163. package/libusb/msvc/xusb_2010.vcxproj.filters +14 -0
  164. package/libusb/msvc/xusb_2012.vcxproj +167 -0
  165. package/libusb/msvc/xusb_2012.vcxproj.filters +14 -0
  166. package/libusb/msvc/xusb_2013.vcxproj +167 -0
  167. package/libusb/msvc/xusb_sources +20 -0
  168. package/libusb/msvc/xusb_wince.vcproj +1120 -0
  169. package/libusb/tests/Makefile.am +6 -0
  170. package/libusb/tests/libusb_testlib.h +107 -0
  171. package/libusb/tests/stress.c +160 -0
  172. package/libusb/tests/testlib.c +281 -0
  173. package/libusb.gypi +136 -0
  174. package/libusb_config/config.h +1 -0
  175. package/package.json +69 -0
  176. package/src/device.cc +412 -0
  177. package/src/helpers.h +64 -0
  178. package/src/node_usb.cc +319 -0
  179. package/src/node_usb.h +120 -0
  180. package/src/transfer.cc +148 -0
  181. package/src/uv_async_queue.h +33 -0
  182. package/test/usb.coffee +191 -0
  183. package/usb.js +524 -0
@@ -0,0 +1,38 @@
1
+ #TARGETTYPE is not defined, to allow selection between static lib or DLL with ddk_build
2
+ TARGETNAME=libusb-1.0
3
+ DLLDEF=..\libusb-1.0.def
4
+
5
+ !IFNDEF MSC_WARNING_LEVEL
6
+ MSC_WARNING_LEVEL=/W3
7
+ !ENDIF
8
+
9
+ !IFDEF STATIC_LIBC
10
+ USE_LIBCMT=1
11
+ !ELSE
12
+ USE_MSVCRT=1
13
+ !ENDIF
14
+
15
+ INCLUDES=..;..\..\msvc;$(DDK_INC_PATH)
16
+ C_DEFINES= $(C_DEFINES) $(LIBUSB_DEFINES) /DDDKBUILD
17
+
18
+ # http://jpassing.com/2009/10/21/ltcg-issues-with-the-win7amd64-environment-of-wdk-7600/
19
+ # prevents the following error when using the 64 bit static lib with Visual Studio 2010:
20
+ # "fatal error C1001: An internal error has occurred in the compiler.
21
+ # (compiler file 'f:\dd\vctools\compiler\utc\src\p2\p2symtab.c', line 1823)"
22
+ # and the following with Visual Studio 2010:
23
+ # "fatal error C1047: The object or library file 'libusb-1.0.lib' was created with
24
+ # an older compiler than other objects; rebuild old objects and libraries"
25
+ USER_C_FLAGS=/GL-
26
+
27
+ TARGETLIBS=$(SDK_LIB_PATH)\kernel32.lib
28
+
29
+ SOURCES=..\core.c \
30
+ ..\descriptor.c \
31
+ ..\io.c \
32
+ ..\strerror.c \
33
+ ..\sync.c \
34
+ ..\hotplug.c \
35
+ threads_windows.c \
36
+ poll_windows.c \
37
+ windows_usb.c \
38
+ ..\libusb-1.0.rc
@@ -0,0 +1,174 @@
1
+ # Microsoft Developer Studio Project File - Name="libusb_static" - Package Owner=<4>
2
+ # Microsoft Developer Studio Generated Build File, Format Version 6.00
3
+ # ** DO NOT EDIT **
4
+
5
+ # TARGTYPE "Win32 (x86) Static Library" 0x0104
6
+
7
+ CFG=libusb_static - Win32 Debug
8
+ !MESSAGE This is not a valid makefile. To build this project using NMAKE,
9
+ !MESSAGE use the Export Makefile command and run
10
+ !MESSAGE
11
+ !MESSAGE NMAKE /f "libusb_static.mak".
12
+ !MESSAGE
13
+ !MESSAGE You can specify a configuration when running NMAKE
14
+ !MESSAGE by defining the macro CFG on the command line. For example:
15
+ !MESSAGE
16
+ !MESSAGE NMAKE /f "libusb_static.mak" CFG="libusb_static - Win32 Debug"
17
+ !MESSAGE
18
+ !MESSAGE Possible choices for configuration are:
19
+ !MESSAGE
20
+ !MESSAGE "libusb_static - Win32 Release" (based on "Win32 (x86) Static Library")
21
+ !MESSAGE "libusb_static - Win32 Debug" (based on "Win32 (x86) Static Library")
22
+ !MESSAGE
23
+
24
+ # Begin Project
25
+ # PROP AllowPerConfigDependencies 0
26
+ # PROP Scc_ProjName ""
27
+ # PROP Scc_LocalPath ""
28
+ CPP=cl.exe
29
+ RSC=rc.exe
30
+
31
+ !IF "$(CFG)" == "libusb_static - Win32 Release"
32
+
33
+ # PROP BASE Use_MFC 0
34
+ # PROP BASE Use_Debug_Libraries 0
35
+ # PROP BASE Output_Dir "Release"
36
+ # PROP BASE Intermediate_Dir "Release"
37
+ # PROP BASE Target_Dir ""
38
+ # PROP Use_MFC 0
39
+ # PROP Use_Debug_Libraries 0
40
+ # PROP Output_Dir "../Win32/Release/lib"
41
+ # PROP Intermediate_Dir "../Win32/Release/lib"
42
+ # PROP Target_Dir ""
43
+ # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_LIB" /YX /FD /c
44
+ # ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "../libusb" /D "WIN32" /D "NDEBUG" /D "_UNICODE" /D "UNICODE" /U "_MBCS" /D "_LIB" /FR /FD /EHsc /c
45
+ # ADD BASE RSC /l 0x409 /d "NDEBUG"
46
+ # ADD RSC /l 0x409 /d "NDEBUG"
47
+ BSC32=bscmake.exe
48
+ # ADD BASE BSC32 /nologo
49
+ # ADD BSC32 /nologo
50
+ LIB32=link.exe -lib
51
+ # ADD BASE LIB32 /nologo
52
+ # ADD LIB32 /nologo /out:"../Win32/Release/lib/libusb-1.0.lib"
53
+
54
+ !ELSEIF "$(CFG)" == "libusb_static - Win32 Debug"
55
+
56
+ # PROP BASE Use_MFC 0
57
+ # PROP BASE Use_Debug_Libraries 1
58
+ # PROP BASE Output_Dir "Debug"
59
+ # PROP BASE Intermediate_Dir "Debug"
60
+ # PROP BASE Target_Dir ""
61
+ # PROP Use_MFC 0
62
+ # PROP Use_Debug_Libraries 1
63
+ # PROP Output_Dir "../Win32/Debug/lib"
64
+ # PROP Intermediate_Dir "../Win32/Debug/lib"
65
+ # PROP Target_Dir ""
66
+ # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_LIB" /YX /FD /GZ /c
67
+ # ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "." /I "../libusb" /D "WIN32" /D "_DEBUG" /D "_UNICODE" /D "UNICODE" /U "_MBCS" /D "_LIB" /FR /FD /GZ /EHsc /c
68
+ # ADD BASE RSC /l 0x409 /d "_DEBUG"
69
+ # ADD RSC /l 0x409 /d "_DEBUG"
70
+ BSC32=bscmake.exe
71
+ # ADD BASE BSC32 /nologo
72
+ # ADD BSC32 /nologo /n
73
+ LIB32=link.exe -lib
74
+ # ADD BASE LIB32 /nologo
75
+ # ADD LIB32 /nologo /out:"../Win32/Debug/lib/libusb-1.0.lib"
76
+
77
+ !ENDIF
78
+
79
+ # Begin Target
80
+
81
+ # Name "libusb_static - Win32 Release"
82
+ # Name "libusb_static - Win32 Debug"
83
+ # Begin Group "Source Files"
84
+
85
+ # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
86
+ # Begin Source File
87
+
88
+ SOURCE=..\libusb\core.c
89
+ # End Source File
90
+ # Begin Source File
91
+
92
+ SOURCE=..\libusb\os\darwin_usb.c
93
+ # PROP Exclude_From_Build 1
94
+ # End Source File
95
+ # Begin Source File
96
+
97
+ SOURCE=..\libusb\descriptor.c
98
+ # End Source File
99
+ # Begin Source File
100
+
101
+ SOURCE=..\libusb\io.c
102
+ # End Source File
103
+ # Begin Source File
104
+
105
+ SOURCE=..\libusb\os\linux_usbfs.c
106
+ # PROP Exclude_From_Build 1
107
+ # End Source File
108
+ # Begin Source File
109
+
110
+ SOURCE=..\libusb\os\poll_windows.c
111
+ # End Source File
112
+ # Begin Source File
113
+
114
+ SOURCE=..\libusb\sync.c
115
+ # End Source File
116
+ # Begin Source File
117
+
118
+ SOURCE=..\libusb\os\threads_windows.c
119
+ # End Source File
120
+ # Begin Source File
121
+
122
+ SOURCE=..\libusb\os\windows_usb.c
123
+ # End Source File
124
+ # End Group
125
+ # Begin Group "Header Files"
126
+
127
+ # PROP Default_Filter "h;hpp;hxx;hm;inl"
128
+ # Begin Source File
129
+
130
+ SOURCE=.\config.h
131
+ # End Source File
132
+ # Begin Source File
133
+
134
+ SOURCE=..\libusb\os\darwin_usb.h
135
+ # End Source File
136
+ # Begin Source File
137
+
138
+ SOURCE=..\libusb\libusb.h
139
+ # End Source File
140
+ # Begin Source File
141
+
142
+ SOURCE=..\libusb\libusbi.h
143
+ # End Source File
144
+ # Begin Source File
145
+
146
+ SOURCE=..\libusb\os\linux_usbfs.h
147
+ # End Source File
148
+ # Begin Source File
149
+
150
+ SOURCE=..\libusb\os\poll_posix.h
151
+ # End Source File
152
+ # Begin Source File
153
+
154
+ SOURCE=..\libusb\os\poll_windows.h
155
+ # End Source File
156
+ # Begin Source File
157
+
158
+ SOURCE=..\libusb\os\threads_posix.h
159
+ # End Source File
160
+ # Begin Source File
161
+
162
+ SOURCE=..\libusb\os\threads_windows.h
163
+ # End Source File
164
+ # Begin Source File
165
+
166
+ SOURCE=..\libusb\os\windows_usb.h
167
+ # End Source File
168
+ # Begin Source File
169
+
170
+ SOURCE=..\libusb\os\windows_common.h
171
+ # End Source File
172
+ # End Group
173
+ # End Target
174
+ # End Project
@@ -0,0 +1,362 @@
1
+ <?xml version="1.0" encoding="Windows-1252"?>
2
+ <VisualStudioProject
3
+ ProjectType="Visual C++"
4
+ Version="8.00"
5
+ Name="libusb-1.0 (static)"
6
+ ProjectGUID="{5AB6B770-1925-48D5-ABC2-930F3259C020}"
7
+ RootNamespace="libusb"
8
+ Keyword="Win32Proj"
9
+ >
10
+ <Platforms>
11
+ <Platform
12
+ Name="Win32"
13
+ />
14
+ <Platform
15
+ Name="x64"
16
+ />
17
+ </Platforms>
18
+ <ToolFiles>
19
+ </ToolFiles>
20
+ <Configurations>
21
+ <Configuration
22
+ Name="Debug|Win32"
23
+ OutputDirectory="..\$(PlatformName)\$(ConfigurationName)\lib"
24
+ IntermediateDirectory="..\$(PlatformName)\$(ConfigurationName)\lib\libusb-1.0"
25
+ ConfigurationType="4"
26
+ CharacterSet="1"
27
+ >
28
+ <Tool
29
+ Name="VCPreBuildEventTool"
30
+ />
31
+ <Tool
32
+ Name="VCCustomBuildTool"
33
+ />
34
+ <Tool
35
+ Name="VCXMLDataGeneratorTool"
36
+ />
37
+ <Tool
38
+ Name="VCWebServiceProxyGeneratorTool"
39
+ />
40
+ <Tool
41
+ Name="VCMIDLTool"
42
+ />
43
+ <Tool
44
+ Name="VCCLCompilerTool"
45
+ Optimization="0"
46
+ AdditionalIncludeDirectories=".;..\libusb"
47
+ PreprocessorDefinitions="WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS"
48
+ MinimalRebuild="true"
49
+ BasicRuntimeChecks="3"
50
+ RuntimeLibrary="3"
51
+ UsePrecompiledHeader="0"
52
+ WarningLevel="3"
53
+ Detect64BitPortabilityProblems="false"
54
+ DebugInformationFormat="4"
55
+ />
56
+ <Tool
57
+ Name="VCManagedResourceCompilerTool"
58
+ />
59
+ <Tool
60
+ Name="VCResourceCompilerTool"
61
+ />
62
+ <Tool
63
+ Name="VCPreLinkEventTool"
64
+ />
65
+ <Tool
66
+ Name="VCLibrarianTool"
67
+ OutputFile="$(OutDir)\libusb-1.0.lib"
68
+ />
69
+ <Tool
70
+ Name="VCALinkTool"
71
+ />
72
+ <Tool
73
+ Name="VCXDCMakeTool"
74
+ />
75
+ <Tool
76
+ Name="VCBscMakeTool"
77
+ />
78
+ <Tool
79
+ Name="VCFxCopTool"
80
+ />
81
+ <Tool
82
+ Name="VCPostBuildEventTool"
83
+ />
84
+ </Configuration>
85
+ <Configuration
86
+ Name="Release|Win32"
87
+ OutputDirectory="..\$(PlatformName)\$(ConfigurationName)\lib"
88
+ IntermediateDirectory="..\$(PlatformName)\$(ConfigurationName)\lib\libusb-1.0"
89
+ ConfigurationType="4"
90
+ CharacterSet="1"
91
+ WholeProgramOptimization="1"
92
+ >
93
+ <Tool
94
+ Name="VCPreBuildEventTool"
95
+ />
96
+ <Tool
97
+ Name="VCCustomBuildTool"
98
+ />
99
+ <Tool
100
+ Name="VCXMLDataGeneratorTool"
101
+ />
102
+ <Tool
103
+ Name="VCWebServiceProxyGeneratorTool"
104
+ />
105
+ <Tool
106
+ Name="VCMIDLTool"
107
+ />
108
+ <Tool
109
+ Name="VCCLCompilerTool"
110
+ AdditionalIncludeDirectories=".;..\libusb"
111
+ PreprocessorDefinitions="WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS"
112
+ RuntimeLibrary="2"
113
+ UsePrecompiledHeader="0"
114
+ WarningLevel="3"
115
+ Detect64BitPortabilityProblems="false"
116
+ DebugInformationFormat="3"
117
+ />
118
+ <Tool
119
+ Name="VCManagedResourceCompilerTool"
120
+ />
121
+ <Tool
122
+ Name="VCResourceCompilerTool"
123
+ />
124
+ <Tool
125
+ Name="VCPreLinkEventTool"
126
+ />
127
+ <Tool
128
+ Name="VCLibrarianTool"
129
+ OutputFile="$(OutDir)\libusb-1.0.lib"
130
+ />
131
+ <Tool
132
+ Name="VCALinkTool"
133
+ />
134
+ <Tool
135
+ Name="VCXDCMakeTool"
136
+ />
137
+ <Tool
138
+ Name="VCBscMakeTool"
139
+ />
140
+ <Tool
141
+ Name="VCFxCopTool"
142
+ />
143
+ <Tool
144
+ Name="VCPostBuildEventTool"
145
+ />
146
+ </Configuration>
147
+ <Configuration
148
+ Name="Debug|x64"
149
+ OutputDirectory="..\$(PlatformName)\$(ConfigurationName)\lib"
150
+ IntermediateDirectory="..\$(PlatformName)\$(ConfigurationName)\lib\libusb-1.0"
151
+ ConfigurationType="4"
152
+ CharacterSet="1"
153
+ >
154
+ <Tool
155
+ Name="VCPreBuildEventTool"
156
+ />
157
+ <Tool
158
+ Name="VCCustomBuildTool"
159
+ />
160
+ <Tool
161
+ Name="VCXMLDataGeneratorTool"
162
+ />
163
+ <Tool
164
+ Name="VCWebServiceProxyGeneratorTool"
165
+ />
166
+ <Tool
167
+ Name="VCMIDLTool"
168
+ TargetEnvironment="3"
169
+ />
170
+ <Tool
171
+ Name="VCCLCompilerTool"
172
+ Optimization="0"
173
+ AdditionalIncludeDirectories=".;..\libusb"
174
+ PreprocessorDefinitions="WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS"
175
+ MinimalRebuild="true"
176
+ BasicRuntimeChecks="3"
177
+ RuntimeLibrary="3"
178
+ UsePrecompiledHeader="0"
179
+ WarningLevel="3"
180
+ Detect64BitPortabilityProblems="false"
181
+ DebugInformationFormat="3"
182
+ />
183
+ <Tool
184
+ Name="VCManagedResourceCompilerTool"
185
+ />
186
+ <Tool
187
+ Name="VCResourceCompilerTool"
188
+ />
189
+ <Tool
190
+ Name="VCPreLinkEventTool"
191
+ />
192
+ <Tool
193
+ Name="VCLibrarianTool"
194
+ OutputFile="$(OutDir)\libusb-1.0.lib"
195
+ />
196
+ <Tool
197
+ Name="VCALinkTool"
198
+ />
199
+ <Tool
200
+ Name="VCXDCMakeTool"
201
+ />
202
+ <Tool
203
+ Name="VCBscMakeTool"
204
+ />
205
+ <Tool
206
+ Name="VCFxCopTool"
207
+ />
208
+ <Tool
209
+ Name="VCPostBuildEventTool"
210
+ />
211
+ </Configuration>
212
+ <Configuration
213
+ Name="Release|x64"
214
+ OutputDirectory="..\$(PlatformName)\$(ConfigurationName)\lib"
215
+ IntermediateDirectory="..\$(PlatformName)\$(ConfigurationName)\lib\libusb-1.0"
216
+ ConfigurationType="4"
217
+ CharacterSet="1"
218
+ WholeProgramOptimization="1"
219
+ >
220
+ <Tool
221
+ Name="VCPreBuildEventTool"
222
+ />
223
+ <Tool
224
+ Name="VCCustomBuildTool"
225
+ />
226
+ <Tool
227
+ Name="VCXMLDataGeneratorTool"
228
+ />
229
+ <Tool
230
+ Name="VCWebServiceProxyGeneratorTool"
231
+ />
232
+ <Tool
233
+ Name="VCMIDLTool"
234
+ TargetEnvironment="3"
235
+ />
236
+ <Tool
237
+ Name="VCCLCompilerTool"
238
+ AdditionalIncludeDirectories=".;..\libusb"
239
+ PreprocessorDefinitions="WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS"
240
+ RuntimeLibrary="2"
241
+ UsePrecompiledHeader="0"
242
+ WarningLevel="3"
243
+ Detect64BitPortabilityProblems="false"
244
+ DebugInformationFormat="3"
245
+ />
246
+ <Tool
247
+ Name="VCManagedResourceCompilerTool"
248
+ />
249
+ <Tool
250
+ Name="VCResourceCompilerTool"
251
+ />
252
+ <Tool
253
+ Name="VCPreLinkEventTool"
254
+ />
255
+ <Tool
256
+ Name="VCLibrarianTool"
257
+ OutputFile="$(OutDir)\libusb-1.0.lib"
258
+ />
259
+ <Tool
260
+ Name="VCALinkTool"
261
+ />
262
+ <Tool
263
+ Name="VCXDCMakeTool"
264
+ />
265
+ <Tool
266
+ Name="VCBscMakeTool"
267
+ />
268
+ <Tool
269
+ Name="VCFxCopTool"
270
+ />
271
+ <Tool
272
+ Name="VCPostBuildEventTool"
273
+ />
274
+ </Configuration>
275
+ </Configurations>
276
+ <References>
277
+ </References>
278
+ <Files>
279
+ <Filter
280
+ Name="Source Files"
281
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
282
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
283
+ >
284
+ <File
285
+ RelativePath="..\libusb\core.c"
286
+ >
287
+ </File>
288
+ <File
289
+ RelativePath="..\libusb\descriptor.c"
290
+ >
291
+ </File>
292
+ <File
293
+ RelativePath="..\libusb\hotplug.c"
294
+ >
295
+ </File>
296
+ <File
297
+ RelativePath="..\libusb\io.c"
298
+ >
299
+ </File>
300
+ <File
301
+ RelativePath="..\libusb\strerror.c"
302
+ >
303
+ </File>
304
+ <File
305
+ RelativePath="..\libusb\sync.c"
306
+ >
307
+ </File>
308
+ <File
309
+ RelativePath="..\libusb\os\threads_windows.c"
310
+ >
311
+ </File>
312
+ <File
313
+ RelativePath="..\libusb\os\poll_windows.c"
314
+ >
315
+ </File>
316
+ <File
317
+ RelativePath="..\libusb\os\windows_usb.c"
318
+ >
319
+ </File>
320
+ </Filter>
321
+ <Filter
322
+ Name="Header Files"
323
+ Filter="h;hpp;hxx;hm;inl;inc;xsd"
324
+ UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
325
+ >
326
+ <File
327
+ RelativePath=".\config.h"
328
+ >
329
+ </File>
330
+ <File
331
+ RelativePath="..\libusb\hotplug.h"
332
+ >
333
+ </File>
334
+ <File
335
+ RelativePath="..\libusb\libusb.h"
336
+ >
337
+ </File>
338
+ <File
339
+ RelativePath="..\libusb\libusbi.h"
340
+ >
341
+ </File>
342
+ <File
343
+ RelativePath="..\libusb\os\threads_windows.h"
344
+ >
345
+ </File>
346
+ <File
347
+ RelativePath="..\libusb\os\poll_windows.h"
348
+ >
349
+ </File>
350
+ <File
351
+ RelativePath="..\libusb\os\windows_usb.h"
352
+ >
353
+ </File>
354
+ <File
355
+ RelativePath="..\libusb\os\windows_common.h"
356
+ >
357
+ </File>
358
+ </Filter>
359
+ </Files>
360
+ <Globals>
361
+ </Globals>
362
+ </VisualStudioProject>