usb 2.1.1 → 2.2.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.
Files changed (287) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/README.md +4 -0
  3. package/dist/index.d.ts +2 -1
  4. package/dist/index.js +3 -1
  5. package/dist/index.js.map +1 -1
  6. package/dist/usb/bindings.d.ts +4 -0
  7. package/dist/usb/device.js +5 -0
  8. package/dist/usb/device.js.map +1 -1
  9. package/dist/usb/interface.d.ts +1 -1
  10. package/dist/usb/interface.js +1 -5
  11. package/dist/usb/interface.js.map +1 -1
  12. package/dist/webusb/webusb-device.d.ts +2 -1
  13. package/dist/webusb/webusb-device.js +21 -14
  14. package/dist/webusb/webusb-device.js.map +1 -1
  15. package/libusb/.gitattributes +2 -6
  16. package/libusb/.private/appveyor_build.sh +22 -0
  17. package/libusb/.private/bm.sh +1 -1
  18. package/libusb/.private/ci-build.sh +67 -0
  19. package/libusb/.private/post-rewrite.sh +5 -1
  20. package/libusb/.private/pre-commit.sh +5 -1
  21. package/libusb/.private/wbs.txt +4 -19
  22. package/libusb/.travis.yml +32 -23
  23. package/libusb/AUTHORS +76 -3
  24. package/libusb/ChangeLog +41 -3
  25. package/libusb/INSTALL_WIN.txt +22 -44
  26. package/libusb/Makefile.am +32 -10
  27. package/libusb/{README.md → README} +2 -2
  28. package/libusb/README.git +3 -3
  29. package/libusb/Xcode/common.xcconfig +23 -19
  30. package/libusb/Xcode/config.h +25 -13
  31. package/libusb/Xcode/libusb.xcodeproj/project.pbxproj +511 -109
  32. package/libusb/android/README +90 -54
  33. package/libusb/android/config.h +23 -43
  34. package/libusb/android/examples/unrooted_android.c +301 -0
  35. package/libusb/android/examples/unrooted_android.h +36 -0
  36. package/libusb/android/jni/Android.mk +1 -1
  37. package/libusb/android/jni/Application.mk +16 -0
  38. package/libusb/android/jni/examples.mk +63 -29
  39. package/libusb/android/jni/libusb.mk +14 -8
  40. package/libusb/android/jni/tests.mk +13 -24
  41. package/libusb/appveyor.yml +69 -30
  42. package/libusb/autogen.sh +5 -3
  43. package/libusb/bootstrap.sh +6 -2
  44. package/libusb/configure.ac +302 -228
  45. package/libusb/doc/Makefile.in +22 -0
  46. package/libusb/doc/doxygen.cfg.in +460 -223
  47. package/libusb/examples/Makefile.am +6 -13
  48. package/libusb/examples/dpfp.c +276 -73
  49. package/libusb/examples/ezusb.c +18 -8
  50. package/libusb/examples/ezusb.h +6 -17
  51. package/libusb/examples/fxload.c +4 -5
  52. package/libusb/examples/hotplugtest.c +1 -1
  53. package/libusb/examples/sam3u_benchmark.c +59 -24
  54. package/libusb/examples/testlibusb.c +138 -104
  55. package/libusb/examples/xusb.c +26 -22
  56. package/libusb/libusb/Makefile.am +57 -70
  57. package/libusb/libusb/Makefile.am.extra +26 -0
  58. package/libusb/libusb/core.c +420 -423
  59. package/libusb/libusb/descriptor.c +365 -419
  60. package/libusb/libusb/hotplug.c +197 -104
  61. package/libusb/libusb/io.c +491 -528
  62. package/libusb/libusb/libusb-1.0.def +7 -3
  63. package/libusb/libusb/libusb-1.0.rc +1 -9
  64. package/libusb/libusb/libusb.h +295 -226
  65. package/libusb/libusb/libusbi.h +587 -314
  66. package/libusb/libusb/os/darwin_usb.c +634 -317
  67. package/libusb/libusb/os/darwin_usb.h +39 -15
  68. package/libusb/libusb/os/events_posix.c +300 -0
  69. package/libusb/libusb/os/events_posix.h +59 -0
  70. package/libusb/libusb/os/events_windows.c +214 -0
  71. package/libusb/{msvc/missing.h → libusb/os/events_windows.h} +25 -11
  72. package/libusb/libusb/os/haiku_pollfs.cpp +14 -9
  73. package/libusb/libusb/os/haiku_usb.h +12 -12
  74. package/libusb/libusb/os/haiku_usb_backend.cpp +36 -37
  75. package/libusb/libusb/os/haiku_usb_raw.cpp +80 -116
  76. package/libusb/libusb/os/linux_netlink.c +55 -63
  77. package/libusb/libusb/os/linux_udev.c +61 -69
  78. package/libusb/libusb/os/linux_usbfs.c +926 -1015
  79. package/libusb/libusb/os/linux_usbfs.h +74 -57
  80. package/libusb/libusb/os/netbsd_usb.c +103 -168
  81. package/libusb/libusb/os/null_usb.c +111 -0
  82. package/libusb/libusb/os/openbsd_usb.c +71 -120
  83. package/libusb/libusb/os/sunos_usb.c +289 -375
  84. package/libusb/libusb/os/sunos_usb.h +0 -1
  85. package/libusb/libusb/os/threads_posix.c +81 -32
  86. package/libusb/libusb/os/threads_posix.h +19 -23
  87. package/libusb/libusb/os/threads_windows.c +9 -95
  88. package/libusb/libusb/os/threads_windows.h +33 -31
  89. package/libusb/libusb/os/windows_common.c +904 -0
  90. package/libusb/libusb/os/windows_common.h +329 -42
  91. package/libusb/libusb/os/windows_usbdk.c +161 -267
  92. package/libusb/libusb/os/windows_usbdk.h +5 -2
  93. package/libusb/libusb/os/windows_winusb.c +1326 -1190
  94. package/libusb/libusb/os/windows_winusb.h +167 -167
  95. package/libusb/libusb/strerror.c +20 -30
  96. package/libusb/libusb/sync.c +20 -21
  97. package/libusb/libusb/version.h +1 -1
  98. package/libusb/libusb/version_nano.h +1 -1
  99. package/libusb/msvc/.gitattributes +3 -0
  100. package/libusb/msvc/config.h +27 -20
  101. package/libusb/msvc/{hotplugtest_2012.vcxproj → dpfp_2013.vcxproj} +14 -10
  102. package/libusb/msvc/dpfp_2013.vcxproj.filters +26 -0
  103. package/libusb/msvc/{listdevs_2010.vcxproj → dpfp_2015.vcxproj} +14 -9
  104. package/libusb/msvc/dpfp_2015.vcxproj.filters +26 -0
  105. package/libusb/msvc/dpfp_2017.vcxproj +106 -0
  106. package/libusb/msvc/dpfp_2017.vcxproj.filters +26 -0
  107. package/libusb/msvc/dpfp_2019.vcxproj +106 -0
  108. package/libusb/msvc/dpfp_2019.vcxproj.filters +26 -0
  109. package/libusb/msvc/dpfp_threaded_2013.vcxproj +87 -0
  110. package/libusb/msvc/dpfp_threaded_2013.vcxproj.filters +26 -0
  111. package/libusb/msvc/dpfp_threaded_2015.vcxproj +87 -0
  112. package/libusb/msvc/dpfp_threaded_2015.vcxproj.filters +26 -0
  113. package/libusb/msvc/dpfp_threaded_2017.vcxproj +106 -0
  114. package/libusb/msvc/dpfp_threaded_2017.vcxproj.filters +26 -0
  115. package/libusb/msvc/{fxload_2012.vcxproj → dpfp_threaded_2019.vcxproj} +32 -17
  116. package/libusb/msvc/dpfp_threaded_2019.vcxproj.filters +26 -0
  117. package/libusb/msvc/fxload_2013.vcxproj +6 -3
  118. package/libusb/msvc/fxload_2013.vcxproj.filters +35 -0
  119. package/libusb/msvc/fxload_2015.vcxproj +6 -3
  120. package/libusb/msvc/fxload_2015.vcxproj.filters +35 -0
  121. package/libusb/msvc/fxload_2017.vcxproj +6 -7
  122. package/libusb/msvc/fxload_2017.vcxproj.filters +35 -0
  123. package/libusb/msvc/{fxload_2010.vcxproj → fxload_2019.vcxproj} +29 -6
  124. package/libusb/msvc/fxload_2019.vcxproj.filters +35 -0
  125. package/libusb/{examples → msvc}/getopt/getopt.c +0 -0
  126. package/libusb/{examples → msvc}/getopt/getopt.h +0 -0
  127. package/libusb/{examples → msvc}/getopt/getopt1.c +0 -0
  128. package/libusb/msvc/getopt_2013.vcxproj +4 -5
  129. package/libusb/msvc/getopt_2013.vcxproj.filters +26 -0
  130. package/libusb/msvc/getopt_2015.vcxproj +4 -4
  131. package/libusb/msvc/getopt_2015.vcxproj.filters +26 -0
  132. package/libusb/msvc/getopt_2017.vcxproj +4 -10
  133. package/libusb/msvc/getopt_2017.vcxproj.filters +26 -0
  134. package/libusb/msvc/{getopt_2012.vcxproj → getopt_2019.vcxproj} +25 -6
  135. package/libusb/msvc/getopt_2019.vcxproj.filters +26 -0
  136. package/libusb/msvc/hotplugtest_2013.vcxproj +6 -3
  137. package/libusb/msvc/hotplugtest_2013.vcxproj.filters +23 -0
  138. package/libusb/msvc/hotplugtest_2015.vcxproj +6 -3
  139. package/libusb/msvc/hotplugtest_2015.vcxproj.filters +23 -0
  140. package/libusb/msvc/hotplugtest_2017.vcxproj +6 -7
  141. package/libusb/msvc/hotplugtest_2017.vcxproj.filters +23 -0
  142. package/libusb/msvc/hotplugtest_2019.vcxproj +105 -0
  143. package/libusb/msvc/hotplugtest_2019.vcxproj.filters +23 -0
  144. package/libusb/msvc/libusb_2013.sln +50 -20
  145. package/libusb/msvc/libusb_2015.sln +51 -21
  146. package/libusb/msvc/libusb_2017.sln +90 -36
  147. package/libusb/msvc/libusb_2019.sln +240 -0
  148. package/libusb/msvc/libusb_dll_2013.vcxproj +6 -9
  149. package/libusb/msvc/libusb_dll_2013.vcxproj.filters +94 -0
  150. package/libusb/msvc/libusb_dll_2015.vcxproj +6 -8
  151. package/libusb/msvc/libusb_dll_2015.vcxproj.filters +94 -0
  152. package/libusb/msvc/libusb_dll_2017.vcxproj +6 -16
  153. package/libusb/msvc/libusb_dll_2017.vcxproj.filters +94 -0
  154. package/libusb/msvc/{libusb_dll_2010.vcxproj → libusb_dll_2019.vcxproj} +27 -9
  155. package/libusb/msvc/libusb_dll_2019.vcxproj.filters +94 -0
  156. package/libusb/msvc/libusb_static_2013.vcxproj +5 -9
  157. package/libusb/msvc/libusb_static_2013.vcxproj.filters +80 -0
  158. package/libusb/msvc/libusb_static_2015.vcxproj +5 -8
  159. package/libusb/msvc/libusb_static_2015.vcxproj.filters +80 -0
  160. package/libusb/msvc/libusb_static_2017.vcxproj +5 -8
  161. package/libusb/msvc/libusb_static_2017.vcxproj.filters +80 -0
  162. package/libusb/msvc/{libusb_static_2010.vcxproj → libusb_static_2019.vcxproj} +26 -9
  163. package/libusb/msvc/libusb_static_2019.vcxproj.filters +80 -0
  164. package/libusb/msvc/listdevs_2013.vcxproj +6 -3
  165. package/libusb/msvc/listdevs_2013.vcxproj.filters +23 -0
  166. package/libusb/msvc/listdevs_2015.vcxproj +6 -3
  167. package/libusb/msvc/listdevs_2015.vcxproj.filters +23 -0
  168. package/libusb/msvc/listdevs_2017.vcxproj +6 -7
  169. package/libusb/msvc/listdevs_2017.vcxproj.filters +23 -0
  170. package/libusb/msvc/listdevs_2019.vcxproj +105 -0
  171. package/libusb/msvc/listdevs_2019.vcxproj.filters +23 -0
  172. package/libusb/msvc/{listdevs_2012.vcxproj → sam3u_benchmark_2013.vcxproj} +13 -9
  173. package/libusb/msvc/sam3u_benchmark_2013.vcxproj.filters +26 -0
  174. package/libusb/msvc/{hotplugtest_2010.vcxproj → sam3u_benchmark_2015.vcxproj} +13 -8
  175. package/libusb/msvc/sam3u_benchmark_2015.vcxproj.filters +26 -0
  176. package/libusb/msvc/sam3u_benchmark_2017.vcxproj +106 -0
  177. package/libusb/msvc/sam3u_benchmark_2017.vcxproj.filters +26 -0
  178. package/libusb/msvc/sam3u_benchmark_2019.vcxproj +106 -0
  179. package/libusb/msvc/sam3u_benchmark_2019.vcxproj.filters +26 -0
  180. package/libusb/msvc/stress_2013.vcxproj +4 -2
  181. package/libusb/msvc/stress_2013.vcxproj.filters +32 -0
  182. package/libusb/msvc/stress_2015.vcxproj +4 -2
  183. package/libusb/msvc/stress_2015.vcxproj.filters +32 -0
  184. package/libusb/msvc/stress_2017.vcxproj +4 -6
  185. package/libusb/msvc/stress_2017.vcxproj.filters +32 -0
  186. package/libusb/msvc/{stress_2010.vcxproj → stress_2019.vcxproj} +26 -4
  187. package/libusb/msvc/stress_2019.vcxproj.filters +32 -0
  188. package/libusb/msvc/testlibusb_2013.vcxproj +6 -3
  189. package/libusb/msvc/testlibusb_2013.vcxproj.filters +23 -0
  190. package/libusb/msvc/testlibusb_2015.vcxproj +6 -3
  191. package/libusb/msvc/testlibusb_2015.vcxproj.filters +23 -0
  192. package/libusb/msvc/testlibusb_2017.vcxproj +6 -7
  193. package/libusb/msvc/testlibusb_2017.vcxproj.filters +23 -0
  194. package/libusb/msvc/{testlibusb_2010.vcxproj → testlibusb_2019.vcxproj} +28 -5
  195. package/libusb/msvc/testlibusb_2019.vcxproj.filters +23 -0
  196. package/libusb/msvc/xusb_2013.vcxproj +6 -3
  197. package/libusb/msvc/xusb_2013.vcxproj.filters +23 -0
  198. package/libusb/msvc/xusb_2015.vcxproj +6 -3
  199. package/libusb/msvc/xusb_2015.vcxproj.filters +23 -0
  200. package/libusb/msvc/xusb_2017.vcxproj +6 -7
  201. package/libusb/msvc/xusb_2017.vcxproj.filters +23 -0
  202. package/libusb/msvc/{xusb_2010.vcxproj → xusb_2019.vcxproj} +28 -5
  203. package/libusb/msvc/xusb_2019.vcxproj.filters +23 -0
  204. package/libusb/tests/Makefile.am +1 -0
  205. package/libusb/tests/libusb_testlib.h +12 -43
  206. package/libusb/tests/stress.c +59 -50
  207. package/libusb/tests/testlib.c +78 -171
  208. package/libusb.gypi +10 -11
  209. package/package.json +2 -2
  210. package/prebuilds/android-arm/node.napi.armv7.node +0 -0
  211. package/prebuilds/android-arm64/node.napi.armv8.node +0 -0
  212. package/prebuilds/darwin-x64+arm64/node.napi.node +0 -0
  213. package/prebuilds/linux-arm/node.napi.armv6.node +0 -0
  214. package/prebuilds/linux-arm/node.napi.armv7.node +0 -0
  215. package/prebuilds/linux-arm64/node.napi.armv8.node +0 -0
  216. package/prebuilds/linux-ia32/node.napi.node +0 -0
  217. package/prebuilds/linux-x64/node.napi.glibc.node +0 -0
  218. package/prebuilds/linux-x64/node.napi.musl.node +0 -0
  219. package/prebuilds/win32-ia32/node.napi.node +0 -0
  220. package/prebuilds/win32-x64/node.napi.node +0 -0
  221. package/src/device.cc +12 -7
  222. package/src/node_usb.cc +10 -0
  223. package/test/usb.coffee +6 -0
  224. package/tsc/index.ts +2 -0
  225. package/tsc/usb/bindings.ts +5 -0
  226. package/tsc/usb/device.ts +6 -0
  227. package/tsc/usb/interface.ts +2 -7
  228. package/tsc/webusb/webusb-device.ts +12 -8
  229. package/libusb/.private/bd.cmd +0 -89
  230. package/libusb/.private/bwince.cmd +0 -57
  231. package/libusb/.private/wbs_wince.txt +0 -42
  232. package/libusb/Brewfile +0 -4
  233. package/libusb/appveyor_cygwin.bat +0 -11
  234. package/libusb/appveyor_minGW.bat +0 -19
  235. package/libusb/doc/Makefile.am +0 -9
  236. package/libusb/examples/dpfp_threaded.c +0 -557
  237. package/libusb/libusb/hotplug.h +0 -99
  238. package/libusb/libusb/os/poll_posix.c +0 -84
  239. package/libusb/libusb/os/poll_posix.h +0 -14
  240. package/libusb/libusb/os/poll_windows.c +0 -447
  241. package/libusb/libusb/os/poll_windows.h +0 -98
  242. package/libusb/libusb/os/wince_usb.c +0 -888
  243. package/libusb/libusb/os/wince_usb.h +0 -126
  244. package/libusb/libusb/os/windows_nt_common.c +0 -1010
  245. package/libusb/libusb/os/windows_nt_common.h +0 -110
  246. package/libusb/libusb/os/windows_nt_shared_types.h +0 -147
  247. package/libusb/msvc/appveyor.bat +0 -27
  248. package/libusb/msvc/ddk_build.cmd +0 -219
  249. package/libusb/msvc/errno.h +0 -102
  250. package/libusb/msvc/fxload_sources +0 -23
  251. package/libusb/msvc/getopt_2005.vcproj +0 -288
  252. package/libusb/msvc/getopt_2010.vcxproj +0 -72
  253. package/libusb/msvc/getopt_sources +0 -24
  254. package/libusb/msvc/hotplugtest_sources +0 -20
  255. package/libusb/msvc/inttypes.h +0 -295
  256. package/libusb/msvc/libusb.dsw +0 -71
  257. package/libusb/msvc/libusb_2005.sln +0 -95
  258. package/libusb/msvc/libusb_2010.sln +0 -105
  259. package/libusb/msvc/libusb_2012.sln +0 -105
  260. package/libusb/msvc/libusb_dll.dsp +0 -194
  261. package/libusb/msvc/libusb_dll_2005.vcproj +0 -464
  262. package/libusb/msvc/libusb_dll_2012.vcxproj +0 -107
  263. package/libusb/msvc/libusb_dll_wince.vcproj +0 -1251
  264. package/libusb/msvc/libusb_sources +0 -43
  265. package/libusb/msvc/libusb_static.dsp +0 -174
  266. package/libusb/msvc/libusb_static_2005.vcproj +0 -390
  267. package/libusb/msvc/libusb_static_2012.vcxproj +0 -98
  268. package/libusb/msvc/libusb_static_wince.vcproj +0 -1179
  269. package/libusb/msvc/libusb_wince.sln +0 -246
  270. package/libusb/msvc/listdevs.dsp +0 -103
  271. package/libusb/msvc/listdevs_2005.vcproj +0 -360
  272. package/libusb/msvc/listdevs_sources +0 -20
  273. package/libusb/msvc/listdevs_wince.vcproj +0 -1120
  274. package/libusb/msvc/missing.c +0 -80
  275. package/libusb/msvc/stdint.h +0 -256
  276. package/libusb/msvc/stress_2005.vcproj +0 -390
  277. package/libusb/msvc/stress_2012.vcxproj +0 -87
  278. package/libusb/msvc/stress_sources +0 -21
  279. package/libusb/msvc/stress_wince.vcproj +0 -1128
  280. package/libusb/msvc/testlibusb_2012.vcxproj +0 -83
  281. package/libusb/msvc/testlibusb_sources +0 -20
  282. package/libusb/msvc/xusb.dsp +0 -102
  283. package/libusb/msvc/xusb_2005.vcproj +0 -344
  284. package/libusb/msvc/xusb_2012.vcxproj +0 -83
  285. package/libusb/msvc/xusb_sources +0 -20
  286. package/libusb/msvc/xusb_wince.vcproj +0 -1120
  287. package/libusb/travis-autogen.sh +0 -39
@@ -1,1179 +0,0 @@
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;_LIB;$(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;_LIB;$(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;_LIB;$(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;_LIB;$(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;_LIB;$(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;_LIB;$(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;_LIB;$(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;_LIB;$(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;_LIB;$(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;_LIB;$(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;_LIB;$(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;_LIB;$(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;_LIB;$(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;_LIB;$(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\hotplug.h"
1137
- >
1138
- </File>
1139
- <File
1140
- RelativePath="..\libusb\libusb.h"
1141
- >
1142
- </File>
1143
- <File
1144
- RelativePath="..\libusb\libusbi.h"
1145
- >
1146
- </File>
1147
- <File
1148
- RelativePath="missing.h"
1149
- >
1150
- </File>
1151
- <File
1152
- RelativePath="..\libusb\os\poll_windows.h"
1153
- >
1154
- </File>
1155
- <File
1156
- RelativePath="..\libusb\os\threads_windows.h"
1157
- >
1158
- </File>
1159
- <File
1160
- RelativePath="..\libusb\version.h"
1161
- >
1162
- </File>
1163
- <File
1164
- RelativePath="..\libusb\version_nano.h"
1165
- >
1166
- </File>
1167
- <File
1168
- RelativePath="..\libusb\os\windows_common.h"
1169
- >
1170
- </File>
1171
- <File
1172
- RelativePath="..\libusb\os\wince_usb.h"
1173
- >
1174
- </File>
1175
- </Filter>
1176
- </Files>
1177
- <Globals>
1178
- </Globals>
1179
- </VisualStudioProject>