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,1185 @@
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="{CE67BEFB-37EA-4F5C-A60E-F2D0CC91B6AA}"
7
+ RootNamespace="libusb"
8
+ >
9
+ <Platforms>
10
+ <Platform
11
+ Name="STANDARDSDK_500 (ARMV4I)"
12
+ />
13
+ <Platform
14
+ Name="STANDARDSDK_500 (MIPSII)"
15
+ />
16
+ <Platform
17
+ Name="STANDARDSDK_500 (MIPSII_FP)"
18
+ />
19
+ <Platform
20
+ Name="STANDARDSDK_500 (MIPSIV)"
21
+ />
22
+ <Platform
23
+ Name="STANDARDSDK_500 (MIPSIV_FP)"
24
+ />
25
+ <Platform
26
+ Name="STANDARDSDK_500 (SH4)"
27
+ />
28
+ <Platform
29
+ Name="STANDARDSDK_500 (x86)"
30
+ />
31
+ </Platforms>
32
+ <ToolFiles>
33
+ </ToolFiles>
34
+ <Configurations>
35
+ <Configuration
36
+ Name="Debug|STANDARDSDK_500 (ARMV4I)"
37
+ OutputDirectory="$(SolutionDir)..\ARMV4I\$(ConfigurationName)\lib"
38
+ IntermediateDirectory="$(SolutionDir)..\ARMV4I\$(ConfigurationName)\lib\libusb-1.0"
39
+ ConfigurationType="4"
40
+ CharacterSet="2"
41
+ >
42
+ <Tool
43
+ Name="VCPreBuildEventTool"
44
+ />
45
+ <Tool
46
+ Name="VCCustomBuildTool"
47
+ />
48
+ <Tool
49
+ Name="VCXMLDataGeneratorTool"
50
+ />
51
+ <Tool
52
+ Name="VCWebServiceProxyGeneratorTool"
53
+ />
54
+ <Tool
55
+ Name="VCMIDLTool"
56
+ TargetEnvironment="1"
57
+ />
58
+ <Tool
59
+ Name="VCCLCompilerTool"
60
+ ExecutionBucket="7"
61
+ Optimization="0"
62
+ AdditionalIncludeDirectories=".;..\libusb"
63
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
64
+ MinimalRebuild="true"
65
+ RuntimeLibrary="3"
66
+ WarningLevel="3"
67
+ DebugInformationFormat="3"
68
+ ForcedIncludeFiles=""
69
+ />
70
+ <Tool
71
+ Name="VCManagedResourceCompilerTool"
72
+ />
73
+ <Tool
74
+ Name="VCResourceCompilerTool"
75
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
76
+ AdditionalIncludeDirectories="."
77
+ />
78
+ <Tool
79
+ Name="VCPreLinkEventTool"
80
+ />
81
+ <Tool
82
+ Name="VCLibrarianTool"
83
+ OutputFile="$(OutDir)\libusb-1.0.lib"
84
+ AdditionalOptions="/subsystem:$(CESubsystem)"
85
+ />
86
+ <Tool
87
+ Name="VCALinkTool"
88
+ />
89
+ <Tool
90
+ Name="VCXDCMakeTool"
91
+ />
92
+ <Tool
93
+ Name="VCBscMakeTool"
94
+ />
95
+ <Tool
96
+ Name="VCCodeSignTool"
97
+ />
98
+ <Tool
99
+ Name="VCPostBuildEventTool"
100
+ />
101
+ <DeploymentTool
102
+ ForceDirty="-1"
103
+ RemoteDirectory="%CSIDL_PROGRAM_FILES%\lsusb"
104
+ RegisterOutput="0"
105
+ AdditionalFiles=""
106
+ />
107
+ <DebuggerTool
108
+ />
109
+ </Configuration>
110
+ <Configuration
111
+ Name="Debug|STANDARDSDK_500 (MIPSII)"
112
+ OutputDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\lib"
113
+ IntermediateDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\lib\libusb-1.0"
114
+ ConfigurationType="4"
115
+ CharacterSet="2"
116
+ >
117
+ <Tool
118
+ Name="VCPreBuildEventTool"
119
+ />
120
+ <Tool
121
+ Name="VCCustomBuildTool"
122
+ />
123
+ <Tool
124
+ Name="VCXMLDataGeneratorTool"
125
+ />
126
+ <Tool
127
+ Name="VCWebServiceProxyGeneratorTool"
128
+ />
129
+ <Tool
130
+ Name="VCMIDLTool"
131
+ TargetEnvironment="1"
132
+ />
133
+ <Tool
134
+ Name="VCCLCompilerTool"
135
+ ExecutionBucket="7"
136
+ Optimization="0"
137
+ AdditionalIncludeDirectories=".;..\libusb"
138
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
139
+ MinimalRebuild="true"
140
+ RuntimeLibrary="3"
141
+ WarningLevel="3"
142
+ DebugInformationFormat="3"
143
+ />
144
+ <Tool
145
+ Name="VCManagedResourceCompilerTool"
146
+ />
147
+ <Tool
148
+ Name="VCResourceCompilerTool"
149
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
150
+ AdditionalIncludeDirectories="."
151
+ />
152
+ <Tool
153
+ Name="VCPreLinkEventTool"
154
+ />
155
+ <Tool
156
+ Name="VCLibrarianTool"
157
+ OutputFile="$(OutDir)\libusb-1.0.lib"
158
+ AdditionalOptions="/subsystem:$(CESubsystem)"
159
+ />
160
+ <Tool
161
+ Name="VCALinkTool"
162
+ />
163
+ <Tool
164
+ Name="VCXDCMakeTool"
165
+ />
166
+ <Tool
167
+ Name="VCBscMakeTool"
168
+ />
169
+ <Tool
170
+ Name="VCCodeSignTool"
171
+ />
172
+ <Tool
173
+ Name="VCPostBuildEventTool"
174
+ />
175
+ <DeploymentTool
176
+ ForceDirty="-1"
177
+ RemoteDirectory=""
178
+ RegisterOutput="0"
179
+ AdditionalFiles=""
180
+ />
181
+ <DebuggerTool
182
+ />
183
+ </Configuration>
184
+ <Configuration
185
+ Name="Debug|STANDARDSDK_500 (MIPSII_FP)"
186
+ OutputDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\lib"
187
+ IntermediateDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\lib\libusb-1.0"
188
+ ConfigurationType="4"
189
+ CharacterSet="2"
190
+ >
191
+ <Tool
192
+ Name="VCPreBuildEventTool"
193
+ />
194
+ <Tool
195
+ Name="VCCustomBuildTool"
196
+ />
197
+ <Tool
198
+ Name="VCXMLDataGeneratorTool"
199
+ />
200
+ <Tool
201
+ Name="VCWebServiceProxyGeneratorTool"
202
+ />
203
+ <Tool
204
+ Name="VCMIDLTool"
205
+ TargetEnvironment="1"
206
+ />
207
+ <Tool
208
+ Name="VCCLCompilerTool"
209
+ ExecutionBucket="7"
210
+ Optimization="0"
211
+ AdditionalIncludeDirectories=".;..\libusb"
212
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
213
+ MinimalRebuild="true"
214
+ RuntimeLibrary="3"
215
+ WarningLevel="3"
216
+ DebugInformationFormat="3"
217
+ />
218
+ <Tool
219
+ Name="VCManagedResourceCompilerTool"
220
+ />
221
+ <Tool
222
+ Name="VCResourceCompilerTool"
223
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
224
+ AdditionalIncludeDirectories="."
225
+ />
226
+ <Tool
227
+ Name="VCPreLinkEventTool"
228
+ />
229
+ <Tool
230
+ Name="VCLibrarianTool"
231
+ OutputFile="$(OutDir)\libusb-1.0.lib"
232
+ AdditionalOptions="/subsystem:$(CESubsystem)"
233
+ />
234
+ <Tool
235
+ Name="VCALinkTool"
236
+ />
237
+ <Tool
238
+ Name="VCXDCMakeTool"
239
+ />
240
+ <Tool
241
+ Name="VCBscMakeTool"
242
+ />
243
+ <Tool
244
+ Name="VCCodeSignTool"
245
+ />
246
+ <Tool
247
+ Name="VCPostBuildEventTool"
248
+ />
249
+ <DeploymentTool
250
+ ForceDirty="-1"
251
+ RemoteDirectory=""
252
+ RegisterOutput="0"
253
+ AdditionalFiles=""
254
+ />
255
+ <DebuggerTool
256
+ />
257
+ </Configuration>
258
+ <Configuration
259
+ Name="Debug|STANDARDSDK_500 (MIPSIV)"
260
+ OutputDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\lib"
261
+ IntermediateDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\lib\libusb-1.0"
262
+ ConfigurationType="4"
263
+ CharacterSet="2"
264
+ >
265
+ <Tool
266
+ Name="VCPreBuildEventTool"
267
+ />
268
+ <Tool
269
+ Name="VCCustomBuildTool"
270
+ />
271
+ <Tool
272
+ Name="VCXMLDataGeneratorTool"
273
+ />
274
+ <Tool
275
+ Name="VCWebServiceProxyGeneratorTool"
276
+ />
277
+ <Tool
278
+ Name="VCMIDLTool"
279
+ TargetEnvironment="1"
280
+ />
281
+ <Tool
282
+ Name="VCCLCompilerTool"
283
+ ExecutionBucket="7"
284
+ Optimization="0"
285
+ AdditionalIncludeDirectories=".;..\libusb"
286
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
287
+ MinimalRebuild="true"
288
+ RuntimeLibrary="3"
289
+ WarningLevel="3"
290
+ DebugInformationFormat="3"
291
+ />
292
+ <Tool
293
+ Name="VCManagedResourceCompilerTool"
294
+ />
295
+ <Tool
296
+ Name="VCResourceCompilerTool"
297
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
298
+ AdditionalIncludeDirectories="."
299
+ />
300
+ <Tool
301
+ Name="VCPreLinkEventTool"
302
+ />
303
+ <Tool
304
+ Name="VCLibrarianTool"
305
+ OutputFile="$(OutDir)\libusb-1.0.lib"
306
+ AdditionalOptions="/subsystem:$(CESubsystem)"
307
+ />
308
+ <Tool
309
+ Name="VCALinkTool"
310
+ />
311
+ <Tool
312
+ Name="VCXDCMakeTool"
313
+ />
314
+ <Tool
315
+ Name="VCBscMakeTool"
316
+ />
317
+ <Tool
318
+ Name="VCCodeSignTool"
319
+ />
320
+ <Tool
321
+ Name="VCPostBuildEventTool"
322
+ />
323
+ <DeploymentTool
324
+ ForceDirty="-1"
325
+ RemoteDirectory=""
326
+ RegisterOutput="0"
327
+ AdditionalFiles=""
328
+ />
329
+ <DebuggerTool
330
+ />
331
+ </Configuration>
332
+ <Configuration
333
+ Name="Debug|STANDARDSDK_500 (MIPSIV_FP)"
334
+ OutputDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\lib"
335
+ IntermediateDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\lib\libusb-1.0"
336
+ ConfigurationType="4"
337
+ CharacterSet="2"
338
+ >
339
+ <Tool
340
+ Name="VCPreBuildEventTool"
341
+ />
342
+ <Tool
343
+ Name="VCCustomBuildTool"
344
+ />
345
+ <Tool
346
+ Name="VCXMLDataGeneratorTool"
347
+ />
348
+ <Tool
349
+ Name="VCWebServiceProxyGeneratorTool"
350
+ />
351
+ <Tool
352
+ Name="VCMIDLTool"
353
+ TargetEnvironment="1"
354
+ />
355
+ <Tool
356
+ Name="VCCLCompilerTool"
357
+ ExecutionBucket="7"
358
+ Optimization="0"
359
+ AdditionalIncludeDirectories=".;..\libusb"
360
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
361
+ MinimalRebuild="true"
362
+ RuntimeLibrary="3"
363
+ WarningLevel="3"
364
+ DebugInformationFormat="3"
365
+ />
366
+ <Tool
367
+ Name="VCManagedResourceCompilerTool"
368
+ />
369
+ <Tool
370
+ Name="VCResourceCompilerTool"
371
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
372
+ AdditionalIncludeDirectories="."
373
+ />
374
+ <Tool
375
+ Name="VCPreLinkEventTool"
376
+ />
377
+ <Tool
378
+ Name="VCLibrarianTool"
379
+ OutputFile="$(OutDir)\libusb-1.0.lib"
380
+ AdditionalOptions="/subsystem:$(CESubsystem)"
381
+ />
382
+ <Tool
383
+ Name="VCALinkTool"
384
+ />
385
+ <Tool
386
+ Name="VCXDCMakeTool"
387
+ />
388
+ <Tool
389
+ Name="VCBscMakeTool"
390
+ />
391
+ <Tool
392
+ Name="VCCodeSignTool"
393
+ />
394
+ <Tool
395
+ Name="VCPostBuildEventTool"
396
+ />
397
+ <DeploymentTool
398
+ ForceDirty="-1"
399
+ RemoteDirectory=""
400
+ RegisterOutput="0"
401
+ AdditionalFiles=""
402
+ />
403
+ <DebuggerTool
404
+ />
405
+ </Configuration>
406
+ <Configuration
407
+ Name="Debug|STANDARDSDK_500 (SH4)"
408
+ OutputDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\lib"
409
+ IntermediateDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\lib\libusb-1.0"
410
+ ConfigurationType="4"
411
+ CharacterSet="2"
412
+ >
413
+ <Tool
414
+ Name="VCPreBuildEventTool"
415
+ />
416
+ <Tool
417
+ Name="VCCustomBuildTool"
418
+ />
419
+ <Tool
420
+ Name="VCXMLDataGeneratorTool"
421
+ />
422
+ <Tool
423
+ Name="VCWebServiceProxyGeneratorTool"
424
+ />
425
+ <Tool
426
+ Name="VCMIDLTool"
427
+ TargetEnvironment="1"
428
+ />
429
+ <Tool
430
+ Name="VCCLCompilerTool"
431
+ ExecutionBucket="7"
432
+ Optimization="0"
433
+ AdditionalIncludeDirectories=".;..\libusb"
434
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
435
+ MinimalRebuild="true"
436
+ RuntimeLibrary="3"
437
+ WarningLevel="3"
438
+ DebugInformationFormat="3"
439
+ />
440
+ <Tool
441
+ Name="VCManagedResourceCompilerTool"
442
+ />
443
+ <Tool
444
+ Name="VCResourceCompilerTool"
445
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
446
+ AdditionalIncludeDirectories="."
447
+ />
448
+ <Tool
449
+ Name="VCPreLinkEventTool"
450
+ />
451
+ <Tool
452
+ Name="VCLibrarianTool"
453
+ OutputFile="$(OutDir)\libusb-1.0.lib"
454
+ AdditionalOptions="/subsystem:$(CESubsystem)"
455
+ />
456
+ <Tool
457
+ Name="VCALinkTool"
458
+ />
459
+ <Tool
460
+ Name="VCXDCMakeTool"
461
+ />
462
+ <Tool
463
+ Name="VCBscMakeTool"
464
+ />
465
+ <Tool
466
+ Name="VCCodeSignTool"
467
+ />
468
+ <Tool
469
+ Name="VCPostBuildEventTool"
470
+ />
471
+ <DeploymentTool
472
+ ForceDirty="-1"
473
+ RemoteDirectory=""
474
+ RegisterOutput="0"
475
+ AdditionalFiles=""
476
+ />
477
+ <DebuggerTool
478
+ />
479
+ </Configuration>
480
+ <Configuration
481
+ Name="Debug|STANDARDSDK_500 (x86)"
482
+ OutputDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\lib"
483
+ IntermediateDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\lib\libusb-1.0"
484
+ ConfigurationType="4"
485
+ CharacterSet="2"
486
+ >
487
+ <Tool
488
+ Name="VCPreBuildEventTool"
489
+ />
490
+ <Tool
491
+ Name="VCCustomBuildTool"
492
+ />
493
+ <Tool
494
+ Name="VCXMLDataGeneratorTool"
495
+ />
496
+ <Tool
497
+ Name="VCWebServiceProxyGeneratorTool"
498
+ />
499
+ <Tool
500
+ Name="VCMIDLTool"
501
+ TargetEnvironment="1"
502
+ />
503
+ <Tool
504
+ Name="VCCLCompilerTool"
505
+ ExecutionBucket="7"
506
+ Optimization="0"
507
+ AdditionalIncludeDirectories=".;..\libusb"
508
+ PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
509
+ MinimalRebuild="true"
510
+ RuntimeLibrary="3"
511
+ WarningLevel="3"
512
+ DebugInformationFormat="3"
513
+ />
514
+ <Tool
515
+ Name="VCManagedResourceCompilerTool"
516
+ />
517
+ <Tool
518
+ Name="VCResourceCompilerTool"
519
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
520
+ AdditionalIncludeDirectories="."
521
+ />
522
+ <Tool
523
+ Name="VCPreLinkEventTool"
524
+ />
525
+ <Tool
526
+ Name="VCLibrarianTool"
527
+ OutputFile="$(OutDir)\libusb-1.0.lib"
528
+ AdditionalOptions="/subsystem:$(CESubsystem)"
529
+ />
530
+ <Tool
531
+ Name="VCALinkTool"
532
+ />
533
+ <Tool
534
+ Name="VCXDCMakeTool"
535
+ />
536
+ <Tool
537
+ Name="VCBscMakeTool"
538
+ />
539
+ <Tool
540
+ Name="VCCodeSignTool"
541
+ />
542
+ <Tool
543
+ Name="VCPostBuildEventTool"
544
+ />
545
+ <DeploymentTool
546
+ ForceDirty="-1"
547
+ RemoteDirectory=""
548
+ RegisterOutput="0"
549
+ AdditionalFiles=""
550
+ />
551
+ <DebuggerTool
552
+ />
553
+ </Configuration>
554
+ <Configuration
555
+ Name="Release|STANDARDSDK_500 (ARMV4I)"
556
+ OutputDirectory="$(SolutionDir)..\ARMV4I\$(ConfigurationName)\lib"
557
+ IntermediateDirectory="$(SolutionDir)..\ARMV4I\$(ConfigurationName)\lib\libusb-1.0"
558
+ ConfigurationType="4"
559
+ CharacterSet="2"
560
+ WholeProgramOptimization="1"
561
+ >
562
+ <Tool
563
+ Name="VCPreBuildEventTool"
564
+ />
565
+ <Tool
566
+ Name="VCCustomBuildTool"
567
+ />
568
+ <Tool
569
+ Name="VCXMLDataGeneratorTool"
570
+ />
571
+ <Tool
572
+ Name="VCWebServiceProxyGeneratorTool"
573
+ />
574
+ <Tool
575
+ Name="VCMIDLTool"
576
+ TargetEnvironment="1"
577
+ />
578
+ <Tool
579
+ Name="VCCLCompilerTool"
580
+ ExecutionBucket="7"
581
+ AdditionalIncludeDirectories=".;..\libusb"
582
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
583
+ MinimalRebuild="true"
584
+ RuntimeLibrary="2"
585
+ WarningLevel="3"
586
+ DebugInformationFormat="3"
587
+ />
588
+ <Tool
589
+ Name="VCManagedResourceCompilerTool"
590
+ />
591
+ <Tool
592
+ Name="VCResourceCompilerTool"
593
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
594
+ AdditionalIncludeDirectories="."
595
+ />
596
+ <Tool
597
+ Name="VCPreLinkEventTool"
598
+ />
599
+ <Tool
600
+ Name="VCLibrarianTool"
601
+ OutputFile="$(OutDir)\libusb-1.0.lib"
602
+ AdditionalOptions="/subsystem:$(CESubsystem)"
603
+ />
604
+ <Tool
605
+ Name="VCALinkTool"
606
+ />
607
+ <Tool
608
+ Name="VCXDCMakeTool"
609
+ />
610
+ <Tool
611
+ Name="VCBscMakeTool"
612
+ />
613
+ <Tool
614
+ Name="VCCodeSignTool"
615
+ />
616
+ <Tool
617
+ Name="VCPostBuildEventTool"
618
+ />
619
+ <DeploymentTool
620
+ ForceDirty="-1"
621
+ RemoteDirectory=""
622
+ RegisterOutput="0"
623
+ AdditionalFiles=""
624
+ />
625
+ <DebuggerTool
626
+ />
627
+ </Configuration>
628
+ <Configuration
629
+ Name="Release|STANDARDSDK_500 (MIPSII)"
630
+ OutputDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\lib"
631
+ IntermediateDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\lib\libusb-1.0"
632
+ ConfigurationType="4"
633
+ CharacterSet="2"
634
+ WholeProgramOptimization="1"
635
+ >
636
+ <Tool
637
+ Name="VCPreBuildEventTool"
638
+ />
639
+ <Tool
640
+ Name="VCCustomBuildTool"
641
+ />
642
+ <Tool
643
+ Name="VCXMLDataGeneratorTool"
644
+ />
645
+ <Tool
646
+ Name="VCWebServiceProxyGeneratorTool"
647
+ />
648
+ <Tool
649
+ Name="VCMIDLTool"
650
+ TargetEnvironment="1"
651
+ />
652
+ <Tool
653
+ Name="VCCLCompilerTool"
654
+ ExecutionBucket="7"
655
+ AdditionalIncludeDirectories=".;..\libusb"
656
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
657
+ MinimalRebuild="true"
658
+ RuntimeLibrary="2"
659
+ WarningLevel="3"
660
+ DebugInformationFormat="3"
661
+ />
662
+ <Tool
663
+ Name="VCManagedResourceCompilerTool"
664
+ />
665
+ <Tool
666
+ Name="VCResourceCompilerTool"
667
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
668
+ AdditionalIncludeDirectories="."
669
+ />
670
+ <Tool
671
+ Name="VCPreLinkEventTool"
672
+ />
673
+ <Tool
674
+ Name="VCLibrarianTool"
675
+ OutputFile="$(OutDir)\libusb-1.0.lib"
676
+ AdditionalOptions="/subsystem:$(CESubsystem)"
677
+ />
678
+ <Tool
679
+ Name="VCALinkTool"
680
+ />
681
+ <Tool
682
+ Name="VCXDCMakeTool"
683
+ />
684
+ <Tool
685
+ Name="VCBscMakeTool"
686
+ />
687
+ <Tool
688
+ Name="VCCodeSignTool"
689
+ />
690
+ <Tool
691
+ Name="VCPostBuildEventTool"
692
+ />
693
+ <DeploymentTool
694
+ ForceDirty="-1"
695
+ RemoteDirectory=""
696
+ RegisterOutput="0"
697
+ AdditionalFiles=""
698
+ />
699
+ <DebuggerTool
700
+ />
701
+ </Configuration>
702
+ <Configuration
703
+ Name="Release|STANDARDSDK_500 (MIPSII_FP)"
704
+ OutputDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\lib"
705
+ IntermediateDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\lib\libusb-1.0"
706
+ ConfigurationType="4"
707
+ CharacterSet="2"
708
+ WholeProgramOptimization="1"
709
+ >
710
+ <Tool
711
+ Name="VCPreBuildEventTool"
712
+ />
713
+ <Tool
714
+ Name="VCCustomBuildTool"
715
+ />
716
+ <Tool
717
+ Name="VCXMLDataGeneratorTool"
718
+ />
719
+ <Tool
720
+ Name="VCWebServiceProxyGeneratorTool"
721
+ />
722
+ <Tool
723
+ Name="VCMIDLTool"
724
+ TargetEnvironment="1"
725
+ />
726
+ <Tool
727
+ Name="VCCLCompilerTool"
728
+ ExecutionBucket="7"
729
+ AdditionalIncludeDirectories=".;..\libusb"
730
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
731
+ MinimalRebuild="true"
732
+ RuntimeLibrary="2"
733
+ WarningLevel="3"
734
+ DebugInformationFormat="3"
735
+ />
736
+ <Tool
737
+ Name="VCManagedResourceCompilerTool"
738
+ />
739
+ <Tool
740
+ Name="VCResourceCompilerTool"
741
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
742
+ AdditionalIncludeDirectories="."
743
+ />
744
+ <Tool
745
+ Name="VCPreLinkEventTool"
746
+ />
747
+ <Tool
748
+ Name="VCLibrarianTool"
749
+ OutputFile="$(OutDir)\libusb-1.0.lib"
750
+ AdditionalOptions="/subsystem:$(CESubsystem)"
751
+ />
752
+ <Tool
753
+ Name="VCALinkTool"
754
+ />
755
+ <Tool
756
+ Name="VCXDCMakeTool"
757
+ />
758
+ <Tool
759
+ Name="VCBscMakeTool"
760
+ />
761
+ <Tool
762
+ Name="VCCodeSignTool"
763
+ />
764
+ <Tool
765
+ Name="VCPostBuildEventTool"
766
+ />
767
+ <DeploymentTool
768
+ ForceDirty="-1"
769
+ RemoteDirectory=""
770
+ RegisterOutput="0"
771
+ AdditionalFiles=""
772
+ />
773
+ <DebuggerTool
774
+ />
775
+ </Configuration>
776
+ <Configuration
777
+ Name="Release|STANDARDSDK_500 (MIPSIV)"
778
+ OutputDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\lib"
779
+ IntermediateDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\lib\libusb-1.0"
780
+ ConfigurationType="4"
781
+ CharacterSet="2"
782
+ WholeProgramOptimization="1"
783
+ >
784
+ <Tool
785
+ Name="VCPreBuildEventTool"
786
+ />
787
+ <Tool
788
+ Name="VCCustomBuildTool"
789
+ />
790
+ <Tool
791
+ Name="VCXMLDataGeneratorTool"
792
+ />
793
+ <Tool
794
+ Name="VCWebServiceProxyGeneratorTool"
795
+ />
796
+ <Tool
797
+ Name="VCMIDLTool"
798
+ TargetEnvironment="1"
799
+ />
800
+ <Tool
801
+ Name="VCCLCompilerTool"
802
+ ExecutionBucket="7"
803
+ AdditionalIncludeDirectories=".;..\libusb"
804
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
805
+ MinimalRebuild="true"
806
+ RuntimeLibrary="2"
807
+ WarningLevel="3"
808
+ DebugInformationFormat="3"
809
+ />
810
+ <Tool
811
+ Name="VCManagedResourceCompilerTool"
812
+ />
813
+ <Tool
814
+ Name="VCResourceCompilerTool"
815
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
816
+ AdditionalIncludeDirectories="."
817
+ />
818
+ <Tool
819
+ Name="VCPreLinkEventTool"
820
+ />
821
+ <Tool
822
+ Name="VCLibrarianTool"
823
+ OutputFile="$(OutDir)\libusb-1.0.lib"
824
+ AdditionalOptions="/subsystem:$(CESubsystem)"
825
+ />
826
+ <Tool
827
+ Name="VCALinkTool"
828
+ />
829
+ <Tool
830
+ Name="VCXDCMakeTool"
831
+ />
832
+ <Tool
833
+ Name="VCBscMakeTool"
834
+ />
835
+ <Tool
836
+ Name="VCCodeSignTool"
837
+ />
838
+ <Tool
839
+ Name="VCPostBuildEventTool"
840
+ />
841
+ <DeploymentTool
842
+ ForceDirty="-1"
843
+ RemoteDirectory=""
844
+ RegisterOutput="0"
845
+ AdditionalFiles=""
846
+ />
847
+ <DebuggerTool
848
+ />
849
+ </Configuration>
850
+ <Configuration
851
+ Name="Release|STANDARDSDK_500 (MIPSIV_FP)"
852
+ OutputDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\lib"
853
+ IntermediateDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\lib\libusb-1.0"
854
+ ConfigurationType="4"
855
+ CharacterSet="2"
856
+ WholeProgramOptimization="1"
857
+ >
858
+ <Tool
859
+ Name="VCPreBuildEventTool"
860
+ />
861
+ <Tool
862
+ Name="VCCustomBuildTool"
863
+ />
864
+ <Tool
865
+ Name="VCXMLDataGeneratorTool"
866
+ />
867
+ <Tool
868
+ Name="VCWebServiceProxyGeneratorTool"
869
+ />
870
+ <Tool
871
+ Name="VCMIDLTool"
872
+ TargetEnvironment="1"
873
+ />
874
+ <Tool
875
+ Name="VCCLCompilerTool"
876
+ ExecutionBucket="7"
877
+ AdditionalIncludeDirectories=".;..\libusb"
878
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
879
+ MinimalRebuild="true"
880
+ RuntimeLibrary="2"
881
+ WarningLevel="3"
882
+ DebugInformationFormat="3"
883
+ />
884
+ <Tool
885
+ Name="VCManagedResourceCompilerTool"
886
+ />
887
+ <Tool
888
+ Name="VCResourceCompilerTool"
889
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
890
+ AdditionalIncludeDirectories="."
891
+ />
892
+ <Tool
893
+ Name="VCPreLinkEventTool"
894
+ />
895
+ <Tool
896
+ Name="VCLibrarianTool"
897
+ OutputFile="$(OutDir)\libusb-1.0.lib"
898
+ AdditionalOptions="/subsystem:$(CESubsystem)"
899
+ />
900
+ <Tool
901
+ Name="VCALinkTool"
902
+ />
903
+ <Tool
904
+ Name="VCXDCMakeTool"
905
+ />
906
+ <Tool
907
+ Name="VCBscMakeTool"
908
+ />
909
+ <Tool
910
+ Name="VCCodeSignTool"
911
+ />
912
+ <Tool
913
+ Name="VCPostBuildEventTool"
914
+ />
915
+ <DeploymentTool
916
+ ForceDirty="-1"
917
+ RemoteDirectory=""
918
+ RegisterOutput="0"
919
+ AdditionalFiles=""
920
+ />
921
+ <DebuggerTool
922
+ />
923
+ </Configuration>
924
+ <Configuration
925
+ Name="Release|STANDARDSDK_500 (SH4)"
926
+ OutputDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\lib"
927
+ IntermediateDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\lib\libusb-1.0"
928
+ ConfigurationType="4"
929
+ CharacterSet="2"
930
+ WholeProgramOptimization="1"
931
+ >
932
+ <Tool
933
+ Name="VCPreBuildEventTool"
934
+ />
935
+ <Tool
936
+ Name="VCCustomBuildTool"
937
+ />
938
+ <Tool
939
+ Name="VCXMLDataGeneratorTool"
940
+ />
941
+ <Tool
942
+ Name="VCWebServiceProxyGeneratorTool"
943
+ />
944
+ <Tool
945
+ Name="VCMIDLTool"
946
+ TargetEnvironment="1"
947
+ />
948
+ <Tool
949
+ Name="VCCLCompilerTool"
950
+ ExecutionBucket="7"
951
+ AdditionalIncludeDirectories=".;..\libusb"
952
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
953
+ MinimalRebuild="true"
954
+ RuntimeLibrary="2"
955
+ WarningLevel="3"
956
+ DebugInformationFormat="3"
957
+ />
958
+ <Tool
959
+ Name="VCManagedResourceCompilerTool"
960
+ />
961
+ <Tool
962
+ Name="VCResourceCompilerTool"
963
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
964
+ AdditionalIncludeDirectories="."
965
+ />
966
+ <Tool
967
+ Name="VCPreLinkEventTool"
968
+ />
969
+ <Tool
970
+ Name="VCLibrarianTool"
971
+ OutputFile="$(OutDir)\libusb-1.0.lib"
972
+ AdditionalOptions="/subsystem:$(CESubsystem)"
973
+ />
974
+ <Tool
975
+ Name="VCALinkTool"
976
+ />
977
+ <Tool
978
+ Name="VCXDCMakeTool"
979
+ />
980
+ <Tool
981
+ Name="VCBscMakeTool"
982
+ />
983
+ <Tool
984
+ Name="VCCodeSignTool"
985
+ />
986
+ <Tool
987
+ Name="VCPostBuildEventTool"
988
+ />
989
+ <DeploymentTool
990
+ ForceDirty="-1"
991
+ RemoteDirectory=""
992
+ RegisterOutput="0"
993
+ AdditionalFiles=""
994
+ />
995
+ <DebuggerTool
996
+ />
997
+ </Configuration>
998
+ <Configuration
999
+ Name="Release|STANDARDSDK_500 (x86)"
1000
+ OutputDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\lib"
1001
+ IntermediateDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\lib\libusb-1.0"
1002
+ ConfigurationType="4"
1003
+ CharacterSet="2"
1004
+ WholeProgramOptimization="1"
1005
+ >
1006
+ <Tool
1007
+ Name="VCPreBuildEventTool"
1008
+ />
1009
+ <Tool
1010
+ Name="VCCustomBuildTool"
1011
+ />
1012
+ <Tool
1013
+ Name="VCXMLDataGeneratorTool"
1014
+ />
1015
+ <Tool
1016
+ Name="VCWebServiceProxyGeneratorTool"
1017
+ />
1018
+ <Tool
1019
+ Name="VCMIDLTool"
1020
+ TargetEnvironment="1"
1021
+ />
1022
+ <Tool
1023
+ Name="VCCLCompilerTool"
1024
+ ExecutionBucket="7"
1025
+ AdditionalIncludeDirectories=".;..\libusb"
1026
+ PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_USRDLL;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
1027
+ MinimalRebuild="true"
1028
+ RuntimeLibrary="2"
1029
+ WarningLevel="3"
1030
+ DebugInformationFormat="3"
1031
+ />
1032
+ <Tool
1033
+ Name="VCManagedResourceCompilerTool"
1034
+ />
1035
+ <Tool
1036
+ Name="VCResourceCompilerTool"
1037
+ PreprocessorDefinitions="WINCE;_WIN32_WCE"
1038
+ AdditionalIncludeDirectories="."
1039
+ />
1040
+ <Tool
1041
+ Name="VCPreLinkEventTool"
1042
+ />
1043
+ <Tool
1044
+ Name="VCLibrarianTool"
1045
+ OutputFile="$(OutDir)\libusb-1.0.lib"
1046
+ AdditionalOptions="/subsystem:$(CESubsystem)"
1047
+ />
1048
+ <Tool
1049
+ Name="VCALinkTool"
1050
+ />
1051
+ <Tool
1052
+ Name="VCXDCMakeTool"
1053
+ />
1054
+ <Tool
1055
+ Name="VCBscMakeTool"
1056
+ />
1057
+ <Tool
1058
+ Name="VCCodeSignTool"
1059
+ />
1060
+ <Tool
1061
+ Name="VCPostBuildEventTool"
1062
+ />
1063
+ <DeploymentTool
1064
+ ForceDirty="-1"
1065
+ RemoteDirectory=""
1066
+ RegisterOutput="0"
1067
+ AdditionalFiles=""
1068
+ />
1069
+ <DebuggerTool
1070
+ />
1071
+ </Configuration>
1072
+ </Configurations>
1073
+ <References>
1074
+ </References>
1075
+ <Files>
1076
+ <Filter
1077
+ Name="Source Files"
1078
+ Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
1079
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
1080
+ >
1081
+ <File
1082
+ RelativePath="..\libusb\core.c"
1083
+ >
1084
+ </File>
1085
+ <File
1086
+ RelativePath="..\libusb\descriptor.c"
1087
+ >
1088
+ </File>
1089
+ <File
1090
+ RelativePath="..\libusb\hotplug.c"
1091
+ >
1092
+ </File>
1093
+ <File
1094
+ RelativePath="..\libusb\io.c"
1095
+ >
1096
+ </File>
1097
+ <File
1098
+ RelativePath="missing.c"
1099
+ >
1100
+ </File>
1101
+ <File
1102
+ RelativePath="..\libusb\os\poll_windows.c"
1103
+ >
1104
+ </File>
1105
+ <File
1106
+ RelativePath="..\libusb\strerror.c"
1107
+ >
1108
+ </File>
1109
+ <File
1110
+ RelativePath="..\libusb\sync.c"
1111
+ >
1112
+ </File>
1113
+ <File
1114
+ RelativePath="..\libusb\os\threads_windows.c"
1115
+ >
1116
+ </File>
1117
+ <File
1118
+ RelativePath="..\libusb\os\wince_usb.c"
1119
+ >
1120
+ </File>
1121
+ </Filter>
1122
+ <Filter
1123
+ Name="Header Files"
1124
+ Filter="h;hpp;hxx;hm;inl;inc;xsd"
1125
+ UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
1126
+ >
1127
+ <File
1128
+ RelativePath="config.h"
1129
+ >
1130
+ </File>
1131
+ <File
1132
+ RelativePath="errno.h"
1133
+ >
1134
+ </File>
1135
+ <File
1136
+ RelativePath="..\libusb\libusb.h"
1137
+ >
1138
+ </File>
1139
+ <File
1140
+ RelativePath="..\libusb\libusbi.h"
1141
+ >
1142
+ </File>
1143
+ <File
1144
+ RelativePath="missing.h"
1145
+ >
1146
+ </File>
1147
+ <File
1148
+ RelativePath="..\libusb\os\poll_windows.h"
1149
+ >
1150
+ </File>
1151
+ <File
1152
+ RelativePath="..\libusb\os\threads_windows.h"
1153
+ >
1154
+ </File>
1155
+ <File
1156
+ RelativePath="..\libusb\version.h"
1157
+ >
1158
+ </File>
1159
+ <File
1160
+ RelativePath="..\libusb\os\wince_usb.h"
1161
+ >
1162
+ </File>
1163
+ <File
1164
+ RelativePath="..\libusb\os\windows_common.h"
1165
+ >
1166
+ </File>
1167
+ </Filter>
1168
+ <Filter
1169
+ Name="Resource Files"
1170
+ Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
1171
+ UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
1172
+ >
1173
+ <File
1174
+ RelativePath="..\libusb\libusb-1.0.def"
1175
+ >
1176
+ </File>
1177
+ <File
1178
+ RelativePath="..\libusb\libusb-1.0.rc"
1179
+ >
1180
+ </File>
1181
+ </Filter>
1182
+ </Files>
1183
+ <Globals>
1184
+ </Globals>
1185
+ </VisualStudioProject>