usb 2.1.2 → 2.3.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 (288) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/README.md +20 -2
  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/index.js +7 -16
  10. package/dist/usb/index.js.map +1 -1
  11. package/dist/webusb/webusb-device.d.ts +2 -1
  12. package/dist/webusb/webusb-device.js +21 -14
  13. package/dist/webusb/webusb-device.js.map +1 -1
  14. package/libusb/.gitattributes +2 -6
  15. package/libusb/.private/appveyor_build.sh +22 -0
  16. package/libusb/.private/bm.sh +1 -1
  17. package/libusb/.private/ci-build.sh +67 -0
  18. package/libusb/.private/ci-container-build.sh +70 -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 +86 -3
  24. package/libusb/ChangeLog +54 -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 +300 -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 +73 -30
  42. package/libusb/autogen.sh +5 -3
  43. package/libusb/bootstrap.sh +6 -2
  44. package/libusb/configure.ac +314 -227
  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 +432 -423
  59. package/libusb/libusb/descriptor.c +365 -419
  60. package/libusb/libusb/hotplug.c +200 -104
  61. package/libusb/libusb/io.c +522 -535
  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 +302 -226
  65. package/libusb/libusb/libusbi.h +607 -316
  66. package/libusb/libusb/os/darwin_usb.c +703 -329
  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 +915 -0
  90. package/libusb/libusb/os/windows_common.h +330 -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 +1355 -1192
  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 +13 -1
  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/tests/umockdev.c +1175 -0
  209. package/libusb.gypi +10 -11
  210. package/package.json +2 -2
  211. package/prebuilds/android-arm/node.napi.armv7.node +0 -0
  212. package/prebuilds/android-arm64/node.napi.armv8.node +0 -0
  213. package/prebuilds/darwin-x64+arm64/node.napi.node +0 -0
  214. package/prebuilds/linux-arm/node.napi.armv6.node +0 -0
  215. package/prebuilds/linux-arm/node.napi.armv7.node +0 -0
  216. package/prebuilds/linux-arm64/node.napi.armv8.node +0 -0
  217. package/prebuilds/linux-ia32/node.napi.node +0 -0
  218. package/prebuilds/linux-x64/node.napi.glibc.node +0 -0
  219. package/prebuilds/linux-x64/node.napi.musl.node +0 -0
  220. package/prebuilds/win32-ia32/node.napi.node +0 -0
  221. package/prebuilds/win32-x64/node.napi.node +0 -0
  222. package/src/device.cc +12 -7
  223. package/src/node_usb.cc +10 -0
  224. package/test/usb.coffee +6 -0
  225. package/tsc/index.ts +2 -0
  226. package/tsc/usb/bindings.ts +5 -0
  227. package/tsc/usb/device.ts +6 -0
  228. package/tsc/usb/index.ts +5 -8
  229. package/tsc/webusb/webusb-device.ts +12 -8
  230. package/libusb/.private/bd.cmd +0 -89
  231. package/libusb/.private/bwince.cmd +0 -57
  232. package/libusb/.private/wbs_wince.txt +0 -42
  233. package/libusb/Brewfile +0 -4
  234. package/libusb/appveyor_cygwin.bat +0 -11
  235. package/libusb/appveyor_minGW.bat +0 -19
  236. package/libusb/doc/Makefile.am +0 -9
  237. package/libusb/examples/dpfp_threaded.c +0 -557
  238. package/libusb/libusb/hotplug.h +0 -99
  239. package/libusb/libusb/os/poll_posix.c +0 -84
  240. package/libusb/libusb/os/poll_posix.h +0 -14
  241. package/libusb/libusb/os/poll_windows.c +0 -447
  242. package/libusb/libusb/os/poll_windows.h +0 -98
  243. package/libusb/libusb/os/wince_usb.c +0 -888
  244. package/libusb/libusb/os/wince_usb.h +0 -126
  245. package/libusb/libusb/os/windows_nt_common.c +0 -1010
  246. package/libusb/libusb/os/windows_nt_common.h +0 -110
  247. package/libusb/libusb/os/windows_nt_shared_types.h +0 -147
  248. package/libusb/msvc/appveyor.bat +0 -27
  249. package/libusb/msvc/ddk_build.cmd +0 -219
  250. package/libusb/msvc/errno.h +0 -102
  251. package/libusb/msvc/fxload_sources +0 -23
  252. package/libusb/msvc/getopt_2005.vcproj +0 -288
  253. package/libusb/msvc/getopt_2010.vcxproj +0 -72
  254. package/libusb/msvc/getopt_sources +0 -24
  255. package/libusb/msvc/hotplugtest_sources +0 -20
  256. package/libusb/msvc/inttypes.h +0 -295
  257. package/libusb/msvc/libusb.dsw +0 -71
  258. package/libusb/msvc/libusb_2005.sln +0 -95
  259. package/libusb/msvc/libusb_2010.sln +0 -105
  260. package/libusb/msvc/libusb_2012.sln +0 -105
  261. package/libusb/msvc/libusb_dll.dsp +0 -194
  262. package/libusb/msvc/libusb_dll_2005.vcproj +0 -464
  263. package/libusb/msvc/libusb_dll_2012.vcxproj +0 -107
  264. package/libusb/msvc/libusb_dll_wince.vcproj +0 -1251
  265. package/libusb/msvc/libusb_sources +0 -43
  266. package/libusb/msvc/libusb_static.dsp +0 -174
  267. package/libusb/msvc/libusb_static_2005.vcproj +0 -390
  268. package/libusb/msvc/libusb_static_2012.vcxproj +0 -98
  269. package/libusb/msvc/libusb_static_wince.vcproj +0 -1179
  270. package/libusb/msvc/libusb_wince.sln +0 -246
  271. package/libusb/msvc/listdevs.dsp +0 -103
  272. package/libusb/msvc/listdevs_2005.vcproj +0 -360
  273. package/libusb/msvc/listdevs_sources +0 -20
  274. package/libusb/msvc/listdevs_wince.vcproj +0 -1120
  275. package/libusb/msvc/missing.c +0 -80
  276. package/libusb/msvc/stdint.h +0 -256
  277. package/libusb/msvc/stress_2005.vcproj +0 -390
  278. package/libusb/msvc/stress_2012.vcxproj +0 -87
  279. package/libusb/msvc/stress_sources +0 -21
  280. package/libusb/msvc/stress_wince.vcproj +0 -1128
  281. package/libusb/msvc/testlibusb_2012.vcxproj +0 -83
  282. package/libusb/msvc/testlibusb_sources +0 -20
  283. package/libusb/msvc/xusb.dsp +0 -102
  284. package/libusb/msvc/xusb_2005.vcproj +0 -344
  285. package/libusb/msvc/xusb_2012.vcxproj +0 -83
  286. package/libusb/msvc/xusb_sources +0 -20
  287. package/libusb/msvc/xusb_wince.vcproj +0 -1120
  288. package/libusb/travis-autogen.sh +0 -39
@@ -1,1128 +0,0 @@
1
- <?xml version="1.0" encoding="Windows-1252"?>
2
- <VisualStudioProject
3
- ProjectType="Visual C++"
4
- Version="8.00"
5
- Name="stress"
6
- ProjectGUID="{61476624-3354-48C8-9334-85AC0D624640}"
7
- RootNamespace="stress"
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)\tests"
38
- IntermediateDirectory="$(SolutionDir)..\ARMV4I\$(ConfigurationName)\tests\$(TargetName)"
39
- ConfigurationType="1"
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;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
64
- MinimalRebuild="true"
65
- RuntimeLibrary="3"
66
- WarningLevel="3"
67
- DebugInformationFormat="3"
68
- />
69
- <Tool
70
- Name="VCManagedResourceCompilerTool"
71
- />
72
- <Tool
73
- Name="VCResourceCompilerTool"
74
- />
75
- <Tool
76
- Name="VCPreLinkEventTool"
77
- />
78
- <Tool
79
- Name="VCLinkerTool"
80
- GenerateDebugInformation="true"
81
- SubSystem="9"
82
- EntryPointSymbol="mainACRTStartup"
83
- TargetMachine="0"
84
- />
85
- <Tool
86
- Name="VCALinkTool"
87
- />
88
- <Tool
89
- Name="VCXDCMakeTool"
90
- />
91
- <Tool
92
- Name="VCBscMakeTool"
93
- />
94
- <Tool
95
- Name="VCCodeSignTool"
96
- />
97
- <Tool
98
- Name="VCPostBuildEventTool"
99
- />
100
- <DeploymentTool
101
- ForceDirty="-1"
102
- RemoteDirectory="%CSIDL_PROGRAM_FILES%\stress"
103
- RegisterOutput="0"
104
- AdditionalFiles=""
105
- />
106
- <DebuggerTool
107
- />
108
- </Configuration>
109
- <Configuration
110
- Name="Debug|STANDARDSDK_500 (MIPSII)"
111
- OutputDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\tests"
112
- IntermediateDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\tests\$(TargetName)"
113
- ConfigurationType="1"
114
- CharacterSet="2"
115
- >
116
- <Tool
117
- Name="VCPreBuildEventTool"
118
- />
119
- <Tool
120
- Name="VCCustomBuildTool"
121
- />
122
- <Tool
123
- Name="VCXMLDataGeneratorTool"
124
- />
125
- <Tool
126
- Name="VCWebServiceProxyGeneratorTool"
127
- />
128
- <Tool
129
- Name="VCMIDLTool"
130
- TargetEnvironment="1"
131
- />
132
- <Tool
133
- Name="VCCLCompilerTool"
134
- ExecutionBucket="7"
135
- Optimization="0"
136
- AdditionalIncludeDirectories="..\libusb;."
137
- PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
138
- MinimalRebuild="true"
139
- RuntimeLibrary="3"
140
- WarningLevel="3"
141
- DebugInformationFormat="3"
142
- />
143
- <Tool
144
- Name="VCManagedResourceCompilerTool"
145
- />
146
- <Tool
147
- Name="VCResourceCompilerTool"
148
- />
149
- <Tool
150
- Name="VCPreLinkEventTool"
151
- />
152
- <Tool
153
- Name="VCLinkerTool"
154
- GenerateDebugInformation="true"
155
- SubSystem="9"
156
- EntryPointSymbol="mainACRTStartup"
157
- TargetMachine="0"
158
- />
159
- <Tool
160
- Name="VCALinkTool"
161
- />
162
- <Tool
163
- Name="VCXDCMakeTool"
164
- />
165
- <Tool
166
- Name="VCBscMakeTool"
167
- />
168
- <Tool
169
- Name="VCCodeSignTool"
170
- />
171
- <Tool
172
- Name="VCPostBuildEventTool"
173
- />
174
- <DeploymentTool
175
- ForceDirty="-1"
176
- RemoteDirectory=""
177
- RegisterOutput="0"
178
- AdditionalFiles=""
179
- />
180
- <DebuggerTool
181
- />
182
- </Configuration>
183
- <Configuration
184
- Name="Debug|STANDARDSDK_500 (MIPSII_FP)"
185
- OutputDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\tests"
186
- IntermediateDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\tests\$(TargetName)"
187
- ConfigurationType="1"
188
- CharacterSet="2"
189
- >
190
- <Tool
191
- Name="VCPreBuildEventTool"
192
- />
193
- <Tool
194
- Name="VCCustomBuildTool"
195
- />
196
- <Tool
197
- Name="VCXMLDataGeneratorTool"
198
- />
199
- <Tool
200
- Name="VCWebServiceProxyGeneratorTool"
201
- />
202
- <Tool
203
- Name="VCMIDLTool"
204
- TargetEnvironment="1"
205
- />
206
- <Tool
207
- Name="VCCLCompilerTool"
208
- ExecutionBucket="7"
209
- Optimization="0"
210
- AdditionalIncludeDirectories="..\libusb;."
211
- PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
212
- MinimalRebuild="true"
213
- RuntimeLibrary="3"
214
- WarningLevel="3"
215
- DebugInformationFormat="3"
216
- />
217
- <Tool
218
- Name="VCManagedResourceCompilerTool"
219
- />
220
- <Tool
221
- Name="VCResourceCompilerTool"
222
- />
223
- <Tool
224
- Name="VCPreLinkEventTool"
225
- />
226
- <Tool
227
- Name="VCLinkerTool"
228
- GenerateDebugInformation="true"
229
- SubSystem="9"
230
- EntryPointSymbol="mainACRTStartup"
231
- TargetMachine="0"
232
- />
233
- <Tool
234
- Name="VCALinkTool"
235
- />
236
- <Tool
237
- Name="VCXDCMakeTool"
238
- />
239
- <Tool
240
- Name="VCBscMakeTool"
241
- />
242
- <Tool
243
- Name="VCCodeSignTool"
244
- />
245
- <Tool
246
- Name="VCPostBuildEventTool"
247
- />
248
- <DeploymentTool
249
- ForceDirty="-1"
250
- RemoteDirectory=""
251
- RegisterOutput="0"
252
- AdditionalFiles=""
253
- />
254
- <DebuggerTool
255
- />
256
- </Configuration>
257
- <Configuration
258
- Name="Debug|STANDARDSDK_500 (MIPSIV)"
259
- OutputDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\tests"
260
- IntermediateDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\tests\$(TargetName)"
261
- ConfigurationType="1"
262
- CharacterSet="2"
263
- >
264
- <Tool
265
- Name="VCPreBuildEventTool"
266
- />
267
- <Tool
268
- Name="VCCustomBuildTool"
269
- />
270
- <Tool
271
- Name="VCXMLDataGeneratorTool"
272
- />
273
- <Tool
274
- Name="VCWebServiceProxyGeneratorTool"
275
- />
276
- <Tool
277
- Name="VCMIDLTool"
278
- TargetEnvironment="1"
279
- />
280
- <Tool
281
- Name="VCCLCompilerTool"
282
- ExecutionBucket="7"
283
- Optimization="0"
284
- AdditionalIncludeDirectories="..\libusb;."
285
- PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
286
- MinimalRebuild="true"
287
- RuntimeLibrary="3"
288
- WarningLevel="3"
289
- DebugInformationFormat="3"
290
- />
291
- <Tool
292
- Name="VCManagedResourceCompilerTool"
293
- />
294
- <Tool
295
- Name="VCResourceCompilerTool"
296
- />
297
- <Tool
298
- Name="VCPreLinkEventTool"
299
- />
300
- <Tool
301
- Name="VCLinkerTool"
302
- GenerateDebugInformation="true"
303
- SubSystem="9"
304
- EntryPointSymbol="mainACRTStartup"
305
- TargetMachine="0"
306
- />
307
- <Tool
308
- Name="VCALinkTool"
309
- />
310
- <Tool
311
- Name="VCXDCMakeTool"
312
- />
313
- <Tool
314
- Name="VCBscMakeTool"
315
- />
316
- <Tool
317
- Name="VCCodeSignTool"
318
- />
319
- <Tool
320
- Name="VCPostBuildEventTool"
321
- />
322
- <DeploymentTool
323
- ForceDirty="-1"
324
- RemoteDirectory=""
325
- RegisterOutput="0"
326
- AdditionalFiles=""
327
- />
328
- <DebuggerTool
329
- />
330
- </Configuration>
331
- <Configuration
332
- Name="Debug|STANDARDSDK_500 (MIPSIV_FP)"
333
- OutputDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\tests"
334
- IntermediateDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\tests\$(TargetName)"
335
- ConfigurationType="1"
336
- CharacterSet="2"
337
- >
338
- <Tool
339
- Name="VCPreBuildEventTool"
340
- />
341
- <Tool
342
- Name="VCCustomBuildTool"
343
- />
344
- <Tool
345
- Name="VCXMLDataGeneratorTool"
346
- />
347
- <Tool
348
- Name="VCWebServiceProxyGeneratorTool"
349
- />
350
- <Tool
351
- Name="VCMIDLTool"
352
- TargetEnvironment="1"
353
- />
354
- <Tool
355
- Name="VCCLCompilerTool"
356
- ExecutionBucket="7"
357
- Optimization="0"
358
- AdditionalIncludeDirectories="..\libusb;."
359
- PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
360
- MinimalRebuild="true"
361
- RuntimeLibrary="3"
362
- WarningLevel="3"
363
- DebugInformationFormat="3"
364
- />
365
- <Tool
366
- Name="VCManagedResourceCompilerTool"
367
- />
368
- <Tool
369
- Name="VCResourceCompilerTool"
370
- />
371
- <Tool
372
- Name="VCPreLinkEventTool"
373
- />
374
- <Tool
375
- Name="VCLinkerTool"
376
- GenerateDebugInformation="true"
377
- SubSystem="9"
378
- EntryPointSymbol="mainACRTStartup"
379
- TargetMachine="0"
380
- />
381
- <Tool
382
- Name="VCALinkTool"
383
- />
384
- <Tool
385
- Name="VCXDCMakeTool"
386
- />
387
- <Tool
388
- Name="VCBscMakeTool"
389
- />
390
- <Tool
391
- Name="VCCodeSignTool"
392
- />
393
- <Tool
394
- Name="VCPostBuildEventTool"
395
- />
396
- <DeploymentTool
397
- ForceDirty="-1"
398
- RemoteDirectory=""
399
- RegisterOutput="0"
400
- AdditionalFiles=""
401
- />
402
- <DebuggerTool
403
- />
404
- </Configuration>
405
- <Configuration
406
- Name="Debug|STANDARDSDK_500 (SH4)"
407
- OutputDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\tests"
408
- IntermediateDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\tests\$(TargetName)"
409
- ConfigurationType="1"
410
- CharacterSet="2"
411
- >
412
- <Tool
413
- Name="VCPreBuildEventTool"
414
- />
415
- <Tool
416
- Name="VCCustomBuildTool"
417
- />
418
- <Tool
419
- Name="VCXMLDataGeneratorTool"
420
- />
421
- <Tool
422
- Name="VCWebServiceProxyGeneratorTool"
423
- />
424
- <Tool
425
- Name="VCMIDLTool"
426
- TargetEnvironment="1"
427
- />
428
- <Tool
429
- Name="VCCLCompilerTool"
430
- ExecutionBucket="7"
431
- Optimization="0"
432
- AdditionalIncludeDirectories="..\libusb;."
433
- PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
434
- MinimalRebuild="true"
435
- RuntimeLibrary="3"
436
- WarningLevel="3"
437
- DebugInformationFormat="3"
438
- />
439
- <Tool
440
- Name="VCManagedResourceCompilerTool"
441
- />
442
- <Tool
443
- Name="VCResourceCompilerTool"
444
- />
445
- <Tool
446
- Name="VCPreLinkEventTool"
447
- />
448
- <Tool
449
- Name="VCLinkerTool"
450
- GenerateDebugInformation="true"
451
- SubSystem="9"
452
- EntryPointSymbol="mainACRTStartup"
453
- TargetMachine="0"
454
- />
455
- <Tool
456
- Name="VCALinkTool"
457
- />
458
- <Tool
459
- Name="VCXDCMakeTool"
460
- />
461
- <Tool
462
- Name="VCBscMakeTool"
463
- />
464
- <Tool
465
- Name="VCCodeSignTool"
466
- />
467
- <Tool
468
- Name="VCPostBuildEventTool"
469
- />
470
- <DeploymentTool
471
- ForceDirty="-1"
472
- RemoteDirectory=""
473
- RegisterOutput="0"
474
- AdditionalFiles=""
475
- />
476
- <DebuggerTool
477
- />
478
- </Configuration>
479
- <Configuration
480
- Name="Debug|STANDARDSDK_500 (x86)"
481
- OutputDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\tests"
482
- IntermediateDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\tests\$(TargetName)"
483
- ConfigurationType="1"
484
- CharacterSet="2"
485
- >
486
- <Tool
487
- Name="VCPreBuildEventTool"
488
- />
489
- <Tool
490
- Name="VCCustomBuildTool"
491
- />
492
- <Tool
493
- Name="VCXMLDataGeneratorTool"
494
- />
495
- <Tool
496
- Name="VCWebServiceProxyGeneratorTool"
497
- />
498
- <Tool
499
- Name="VCMIDLTool"
500
- TargetEnvironment="1"
501
- />
502
- <Tool
503
- Name="VCCLCompilerTool"
504
- ExecutionBucket="7"
505
- Optimization="0"
506
- AdditionalIncludeDirectories="..\libusb;."
507
- PreprocessorDefinitions="_DEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;DEBUG;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
508
- MinimalRebuild="true"
509
- RuntimeLibrary="3"
510
- WarningLevel="3"
511
- DebugInformationFormat="3"
512
- />
513
- <Tool
514
- Name="VCManagedResourceCompilerTool"
515
- />
516
- <Tool
517
- Name="VCResourceCompilerTool"
518
- />
519
- <Tool
520
- Name="VCPreLinkEventTool"
521
- />
522
- <Tool
523
- Name="VCLinkerTool"
524
- GenerateDebugInformation="true"
525
- SubSystem="9"
526
- IgnoreDefaultLibraryNames="oldnames.lib,libc.lib"
527
- EntryPointSymbol="mainACRTStartup"
528
- TargetMachine="0"
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)\tests"
557
- IntermediateDirectory="$(SolutionDir)..\ARMV4I\$(ConfigurationName)\tests\$(TargetName)"
558
- ConfigurationType="1"
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;_CONSOLE;$(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
- />
594
- <Tool
595
- Name="VCPreLinkEventTool"
596
- />
597
- <Tool
598
- Name="VCLinkerTool"
599
- GenerateDebugInformation="true"
600
- SubSystem="9"
601
- OptimizeReferences="2"
602
- EnableCOMDATFolding="2"
603
- EntryPointSymbol="mainACRTStartup"
604
- TargetMachine="0"
605
- />
606
- <Tool
607
- Name="VCALinkTool"
608
- />
609
- <Tool
610
- Name="VCXDCMakeTool"
611
- />
612
- <Tool
613
- Name="VCBscMakeTool"
614
- />
615
- <Tool
616
- Name="VCCodeSignTool"
617
- />
618
- <Tool
619
- Name="VCPostBuildEventTool"
620
- />
621
- <DeploymentTool
622
- ForceDirty="-1"
623
- RemoteDirectory=""
624
- RegisterOutput="0"
625
- AdditionalFiles=""
626
- />
627
- <DebuggerTool
628
- />
629
- </Configuration>
630
- <Configuration
631
- Name="Release|STANDARDSDK_500 (MIPSII)"
632
- OutputDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\tests"
633
- IntermediateDirectory="$(SolutionDir)..\MIPSII\$(ConfigurationName)\tests\$(TargetName)"
634
- ConfigurationType="1"
635
- CharacterSet="2"
636
- WholeProgramOptimization="1"
637
- >
638
- <Tool
639
- Name="VCPreBuildEventTool"
640
- />
641
- <Tool
642
- Name="VCCustomBuildTool"
643
- />
644
- <Tool
645
- Name="VCXMLDataGeneratorTool"
646
- />
647
- <Tool
648
- Name="VCWebServiceProxyGeneratorTool"
649
- />
650
- <Tool
651
- Name="VCMIDLTool"
652
- TargetEnvironment="1"
653
- />
654
- <Tool
655
- Name="VCCLCompilerTool"
656
- ExecutionBucket="7"
657
- AdditionalIncludeDirectories="..\libusb;."
658
- PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
659
- MinimalRebuild="true"
660
- RuntimeLibrary="2"
661
- WarningLevel="3"
662
- DebugInformationFormat="3"
663
- />
664
- <Tool
665
- Name="VCManagedResourceCompilerTool"
666
- />
667
- <Tool
668
- Name="VCResourceCompilerTool"
669
- />
670
- <Tool
671
- Name="VCPreLinkEventTool"
672
- />
673
- <Tool
674
- Name="VCLinkerTool"
675
- GenerateDebugInformation="true"
676
- SubSystem="9"
677
- OptimizeReferences="2"
678
- EnableCOMDATFolding="2"
679
- EntryPointSymbol="mainACRTStartup"
680
- TargetMachine="0"
681
- />
682
- <Tool
683
- Name="VCALinkTool"
684
- />
685
- <Tool
686
- Name="VCXDCMakeTool"
687
- />
688
- <Tool
689
- Name="VCBscMakeTool"
690
- />
691
- <Tool
692
- Name="VCCodeSignTool"
693
- />
694
- <Tool
695
- Name="VCPostBuildEventTool"
696
- />
697
- <DeploymentTool
698
- ForceDirty="-1"
699
- RemoteDirectory=""
700
- RegisterOutput="0"
701
- AdditionalFiles=""
702
- />
703
- <DebuggerTool
704
- />
705
- </Configuration>
706
- <Configuration
707
- Name="Release|STANDARDSDK_500 (MIPSII_FP)"
708
- OutputDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\tests"
709
- IntermediateDirectory="$(SolutionDir)..\MIPSII_FP\$(ConfigurationName)\tests\$(TargetName)"
710
- ConfigurationType="1"
711
- CharacterSet="2"
712
- WholeProgramOptimization="1"
713
- >
714
- <Tool
715
- Name="VCPreBuildEventTool"
716
- />
717
- <Tool
718
- Name="VCCustomBuildTool"
719
- />
720
- <Tool
721
- Name="VCXMLDataGeneratorTool"
722
- />
723
- <Tool
724
- Name="VCWebServiceProxyGeneratorTool"
725
- />
726
- <Tool
727
- Name="VCMIDLTool"
728
- TargetEnvironment="1"
729
- />
730
- <Tool
731
- Name="VCCLCompilerTool"
732
- ExecutionBucket="7"
733
- AdditionalIncludeDirectories="..\libusb;."
734
- PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
735
- MinimalRebuild="true"
736
- RuntimeLibrary="2"
737
- WarningLevel="3"
738
- DebugInformationFormat="3"
739
- />
740
- <Tool
741
- Name="VCManagedResourceCompilerTool"
742
- />
743
- <Tool
744
- Name="VCResourceCompilerTool"
745
- />
746
- <Tool
747
- Name="VCPreLinkEventTool"
748
- />
749
- <Tool
750
- Name="VCLinkerTool"
751
- GenerateDebugInformation="true"
752
- SubSystem="9"
753
- OptimizeReferences="2"
754
- EnableCOMDATFolding="2"
755
- EntryPointSymbol="mainACRTStartup"
756
- TargetMachine="0"
757
- />
758
- <Tool
759
- Name="VCALinkTool"
760
- />
761
- <Tool
762
- Name="VCXDCMakeTool"
763
- />
764
- <Tool
765
- Name="VCBscMakeTool"
766
- />
767
- <Tool
768
- Name="VCCodeSignTool"
769
- />
770
- <Tool
771
- Name="VCPostBuildEventTool"
772
- />
773
- <DeploymentTool
774
- ForceDirty="-1"
775
- RemoteDirectory=""
776
- RegisterOutput="0"
777
- AdditionalFiles=""
778
- />
779
- <DebuggerTool
780
- />
781
- </Configuration>
782
- <Configuration
783
- Name="Release|STANDARDSDK_500 (MIPSIV)"
784
- OutputDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\tests"
785
- IntermediateDirectory="$(SolutionDir)..\MIPSIV\$(ConfigurationName)\tests\$(TargetName)"
786
- ConfigurationType="1"
787
- CharacterSet="2"
788
- WholeProgramOptimization="1"
789
- >
790
- <Tool
791
- Name="VCPreBuildEventTool"
792
- />
793
- <Tool
794
- Name="VCCustomBuildTool"
795
- />
796
- <Tool
797
- Name="VCXMLDataGeneratorTool"
798
- />
799
- <Tool
800
- Name="VCWebServiceProxyGeneratorTool"
801
- />
802
- <Tool
803
- Name="VCMIDLTool"
804
- TargetEnvironment="1"
805
- />
806
- <Tool
807
- Name="VCCLCompilerTool"
808
- ExecutionBucket="7"
809
- AdditionalIncludeDirectories="..\libusb;."
810
- PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
811
- MinimalRebuild="true"
812
- RuntimeLibrary="2"
813
- WarningLevel="3"
814
- DebugInformationFormat="3"
815
- />
816
- <Tool
817
- Name="VCManagedResourceCompilerTool"
818
- />
819
- <Tool
820
- Name="VCResourceCompilerTool"
821
- />
822
- <Tool
823
- Name="VCPreLinkEventTool"
824
- />
825
- <Tool
826
- Name="VCLinkerTool"
827
- GenerateDebugInformation="true"
828
- SubSystem="9"
829
- OptimizeReferences="2"
830
- EnableCOMDATFolding="2"
831
- EntryPointSymbol="mainACRTStartup"
832
- TargetMachine="0"
833
- />
834
- <Tool
835
- Name="VCALinkTool"
836
- />
837
- <Tool
838
- Name="VCXDCMakeTool"
839
- />
840
- <Tool
841
- Name="VCBscMakeTool"
842
- />
843
- <Tool
844
- Name="VCCodeSignTool"
845
- />
846
- <Tool
847
- Name="VCPostBuildEventTool"
848
- />
849
- <DeploymentTool
850
- ForceDirty="-1"
851
- RemoteDirectory=""
852
- RegisterOutput="0"
853
- AdditionalFiles=""
854
- />
855
- <DebuggerTool
856
- />
857
- </Configuration>
858
- <Configuration
859
- Name="Release|STANDARDSDK_500 (MIPSIV_FP)"
860
- OutputDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\tests"
861
- IntermediateDirectory="$(SolutionDir)..\MIPSIV_FP\$(ConfigurationName)\tests\$(TargetName)"
862
- ConfigurationType="1"
863
- CharacterSet="2"
864
- WholeProgramOptimization="1"
865
- >
866
- <Tool
867
- Name="VCPreBuildEventTool"
868
- />
869
- <Tool
870
- Name="VCCustomBuildTool"
871
- />
872
- <Tool
873
- Name="VCXMLDataGeneratorTool"
874
- />
875
- <Tool
876
- Name="VCWebServiceProxyGeneratorTool"
877
- />
878
- <Tool
879
- Name="VCMIDLTool"
880
- TargetEnvironment="1"
881
- />
882
- <Tool
883
- Name="VCCLCompilerTool"
884
- ExecutionBucket="7"
885
- AdditionalIncludeDirectories="..\libusb;."
886
- PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
887
- MinimalRebuild="true"
888
- RuntimeLibrary="2"
889
- WarningLevel="3"
890
- DebugInformationFormat="3"
891
- />
892
- <Tool
893
- Name="VCManagedResourceCompilerTool"
894
- />
895
- <Tool
896
- Name="VCResourceCompilerTool"
897
- />
898
- <Tool
899
- Name="VCPreLinkEventTool"
900
- />
901
- <Tool
902
- Name="VCLinkerTool"
903
- GenerateDebugInformation="true"
904
- SubSystem="9"
905
- OptimizeReferences="2"
906
- EnableCOMDATFolding="2"
907
- EntryPointSymbol="mainACRTStartup"
908
- TargetMachine="0"
909
- />
910
- <Tool
911
- Name="VCALinkTool"
912
- />
913
- <Tool
914
- Name="VCXDCMakeTool"
915
- />
916
- <Tool
917
- Name="VCBscMakeTool"
918
- />
919
- <Tool
920
- Name="VCCodeSignTool"
921
- />
922
- <Tool
923
- Name="VCPostBuildEventTool"
924
- />
925
- <DeploymentTool
926
- ForceDirty="-1"
927
- RemoteDirectory=""
928
- RegisterOutput="0"
929
- AdditionalFiles=""
930
- />
931
- <DebuggerTool
932
- />
933
- </Configuration>
934
- <Configuration
935
- Name="Release|STANDARDSDK_500 (SH4)"
936
- OutputDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\tests"
937
- IntermediateDirectory="$(SolutionDir)..\SH4\$(ConfigurationName)\tests\$(TargetName)"
938
- ConfigurationType="1"
939
- CharacterSet="2"
940
- WholeProgramOptimization="1"
941
- >
942
- <Tool
943
- Name="VCPreBuildEventTool"
944
- />
945
- <Tool
946
- Name="VCCustomBuildTool"
947
- />
948
- <Tool
949
- Name="VCXMLDataGeneratorTool"
950
- />
951
- <Tool
952
- Name="VCWebServiceProxyGeneratorTool"
953
- />
954
- <Tool
955
- Name="VCMIDLTool"
956
- TargetEnvironment="1"
957
- />
958
- <Tool
959
- Name="VCCLCompilerTool"
960
- ExecutionBucket="7"
961
- AdditionalIncludeDirectories="..\libusb;."
962
- PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
963
- MinimalRebuild="true"
964
- RuntimeLibrary="2"
965
- WarningLevel="3"
966
- DebugInformationFormat="3"
967
- />
968
- <Tool
969
- Name="VCManagedResourceCompilerTool"
970
- />
971
- <Tool
972
- Name="VCResourceCompilerTool"
973
- />
974
- <Tool
975
- Name="VCPreLinkEventTool"
976
- />
977
- <Tool
978
- Name="VCLinkerTool"
979
- GenerateDebugInformation="true"
980
- SubSystem="9"
981
- OptimizeReferences="2"
982
- EnableCOMDATFolding="2"
983
- EntryPointSymbol="mainACRTStartup"
984
- TargetMachine="0"
985
- />
986
- <Tool
987
- Name="VCALinkTool"
988
- />
989
- <Tool
990
- Name="VCXDCMakeTool"
991
- />
992
- <Tool
993
- Name="VCBscMakeTool"
994
- />
995
- <Tool
996
- Name="VCCodeSignTool"
997
- />
998
- <Tool
999
- Name="VCPostBuildEventTool"
1000
- />
1001
- <DeploymentTool
1002
- ForceDirty="-1"
1003
- RemoteDirectory=""
1004
- RegisterOutput="0"
1005
- AdditionalFiles=""
1006
- />
1007
- <DebuggerTool
1008
- />
1009
- </Configuration>
1010
- <Configuration
1011
- Name="Release|STANDARDSDK_500 (x86)"
1012
- OutputDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\tests"
1013
- IntermediateDirectory="$(SolutionDir)..\x86\$(ConfigurationName)\tests\$(TargetName)"
1014
- ConfigurationType="1"
1015
- CharacterSet="2"
1016
- WholeProgramOptimization="1"
1017
- >
1018
- <Tool
1019
- Name="VCPreBuildEventTool"
1020
- />
1021
- <Tool
1022
- Name="VCCustomBuildTool"
1023
- />
1024
- <Tool
1025
- Name="VCXMLDataGeneratorTool"
1026
- />
1027
- <Tool
1028
- Name="VCWebServiceProxyGeneratorTool"
1029
- />
1030
- <Tool
1031
- Name="VCMIDLTool"
1032
- TargetEnvironment="1"
1033
- />
1034
- <Tool
1035
- Name="VCCLCompilerTool"
1036
- ExecutionBucket="7"
1037
- AdditionalIncludeDirectories="..\libusb;."
1038
- PreprocessorDefinitions="NDEBUG;_WIN32_WCE=$(CEVER);UNDER_CE;WINCE;_CONSOLE;$(ARCHFAM);$(_ARCHFAM_);_UNICODE;UNICODE"
1039
- MinimalRebuild="true"
1040
- RuntimeLibrary="2"
1041
- WarningLevel="3"
1042
- DebugInformationFormat="3"
1043
- />
1044
- <Tool
1045
- Name="VCManagedResourceCompilerTool"
1046
- />
1047
- <Tool
1048
- Name="VCResourceCompilerTool"
1049
- />
1050
- <Tool
1051
- Name="VCPreLinkEventTool"
1052
- />
1053
- <Tool
1054
- Name="VCLinkerTool"
1055
- GenerateDebugInformation="true"
1056
- SubSystem="9"
1057
- IgnoreDefaultLibraryNames="oldnames.lib,libc.lib"
1058
- OptimizeReferences="2"
1059
- EnableCOMDATFolding="2"
1060
- EntryPointSymbol="mainACRTStartup"
1061
- TargetMachine="0"
1062
- />
1063
- <Tool
1064
- Name="VCALinkTool"
1065
- />
1066
- <Tool
1067
- Name="VCXDCMakeTool"
1068
- />
1069
- <Tool
1070
- Name="VCBscMakeTool"
1071
- />
1072
- <Tool
1073
- Name="VCCodeSignTool"
1074
- />
1075
- <Tool
1076
- Name="VCPostBuildEventTool"
1077
- />
1078
- <DeploymentTool
1079
- ForceDirty="-1"
1080
- RemoteDirectory=""
1081
- RegisterOutput="0"
1082
- AdditionalFiles=""
1083
- />
1084
- <DebuggerTool
1085
- />
1086
- </Configuration>
1087
- </Configurations>
1088
- <References>
1089
- <ProjectReference
1090
- ReferencedProjectIdentifier="{6A49B75F-FB1C-45C0-B7C3-A7698255E7E9}"
1091
- RelativePathToProject=".\libusb_dll.vcproj"
1092
- />
1093
- </References>
1094
- <Files>
1095
- <Filter
1096
- Name="Source Files"
1097
- Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
1098
- UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
1099
- >
1100
- <File
1101
- RelativePath="..\tests\stress.c"
1102
- >
1103
- </File>
1104
- <File
1105
- RelativePath="..\tests\testlib.c"
1106
- >
1107
- </File>
1108
- </Filter>
1109
- <Filter
1110
- Name="Header Files"
1111
- Filter="h;hpp;hxx;hm;inl;inc;xsd"
1112
- UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
1113
- >
1114
- <File
1115
- RelativePath="..\tests\libusb_testlib.h"
1116
- >
1117
- </File>
1118
- </Filter>
1119
- <Filter
1120
- Name="Resource Files"
1121
- Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
1122
- UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
1123
- >
1124
- </Filter>
1125
- </Files>
1126
- <Globals>
1127
- </Globals>
1128
- </VisualStudioProject>