No Description

CMakeLists.txt 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341
  1. set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/examples)
  2. add_executable (hmc5883l-example hmc5883l.cxx)
  3. add_executable (groveled-example groveled.cxx)
  4. add_executable (groveled-multi-example groveled-multi.cxx)
  5. add_executable (groverelay-example groverelay.cxx)
  6. add_executable (grovelight-example grovelight.cxx)
  7. add_executable (grovetemp-example grovetemp.cxx)
  8. add_executable (grovebutton-example grovebutton.cxx)
  9. add_executable (groverotary-example groverotary.cxx)
  10. add_executable (groveslide-example groveslide.cxx)
  11. add_executable (lcm1602-lcd-example lcm1602-lcd.cxx)
  12. add_executable (jhd1313m1-lcd-example jhd1313m1-lcd.cxx)
  13. add_executable (buzzer-sound-example buzzer-sound.cxx)
  14. add_executable (my9221-ledbar-example my9221-ledbar.cxx)
  15. add_executable (my9221-updown-example my9221-updown.cxx)
  16. add_executable (nrf24l01-transmitter-example nrf24l01-transmitter.cxx)
  17. add_executable (nrf24l01-receiver-example nrf24l01-receiver.cxx)
  18. add_executable (nrf24l01-broadcast-example nrf24l01-broadcast.cxx)
  19. add_executable (es08a-example es08a.cxx)
  20. add_executable (son-hcsr04-example hcsr04.cxx)
  21. add_executable (ssd1308-oled-example ssd1308-oled.cxx)
  22. add_executable (ssd1327-oled-example ssd1327-oled.cxx)
  23. add_executable (max44000-example max44000.cxx)
  24. add_executable (mma7455-example mma7455.cxx)
  25. add_executable (st7735-example st7735.cxx)
  26. add_executable (max31855-example max31855.cxx)
  27. add_executable (bmpx8x-example bmpx8x.cxx)
  28. add_executable (stepmotor-example stepmotor.cxx)
  29. add_executable (pulsensor-example pulsensor.cxx)
  30. add_executable (mic-example mic.cxx)
  31. add_executable (mpu9150-example mpu9150.cxx)
  32. add_executable (maxds3231m-example maxds3231m.cxx)
  33. add_executable (max31723-example max31723.cxx)
  34. add_executable (max5487-example max5487.cxx)
  35. add_executable (nrf8001-broadcast-example nrf8001-broadcast.cxx)
  36. add_executable (nrf8001-helloworld-example nrf8001-helloworld.cxx)
  37. add_executable (lpd8806-example lpd8806.cxx)
  38. add_executable (mlx90614-example mlx90614.cxx)
  39. add_executable (ecs1030-example ecs1030.cxx)
  40. add_executable (mq2-example mq2.cxx)
  41. add_executable (mq3-example mq3.cxx)
  42. add_executable (mq5-example mq5.cxx)
  43. add_executable (mq9-example mq9.cxx)
  44. add_executable (tp401-example tp401.cxx)
  45. add_executable (tcs3414cs-example tcs3414cs.cxx)
  46. add_executable (th02-example th02.cxx)
  47. add_executable (ttp223-example ttp223.cxx)
  48. add_executable (lsm303-example lsm303.cxx)
  49. add_executable (joystick12-example joystick12-example.cxx)
  50. add_executable (lol-example lol-example.cxx)
  51. add_executable (tsl2561-example tsl2561.cxx)
  52. add_executable (htu21d-example htu21d.cxx)
  53. add_executable (mpl3115a2-example mpl3115a2.cxx)
  54. add_executable (ldt0028-example ldt0028.cxx)
  55. add_executable (am2315-example am2315.cxx)
  56. add_executable (itg3200-example itg3200.cxx)
  57. add_executable (enc03r-example enc03r.cxx)
  58. add_executable (adc121c021-example adc121c021.cxx)
  59. add_executable (ds1307-example ds1307.cxx)
  60. add_executable (a110x-example a110x.cxx)
  61. add_executable (gp2y0a-example gp2y0a.cxx)
  62. add_executable (grovemoisture-example grovemoisture.cxx)
  63. add_executable (groveehr-example groveehr.cxx)
  64. add_executable (ta12200-example ta12200.cxx)
  65. add_executable (grovelinefinder-example grovelinefinder.cxx)
  66. add_executable (grovevdiv-example grovevdiv.cxx)
  67. add_executable (grovewater-example grovewater.cxx)
  68. add_executable (guvas12d-example guvas12d.cxx)
  69. add_executable (groveloudness-example groveloudness.cxx)
  70. add_executable (mpr121-example mpr121.cxx)
  71. add_executable (ublox6-example ublox6.cxx)
  72. add_executable (yg1006-example yg1006.cxx)
  73. add_executable (wt5001-example wt5001.cxx)
  74. add_executable (ppd42ns-example ppd42ns.cxx)
  75. add_executable (mq303a-example mq303a.cxx)
  76. add_executable (grovespeaker-example grovespeaker.cxx)
  77. add_executable (rfr359f-example rfr359f.cxx)
  78. add_executable (biss0001-example biss0001.cxx)
  79. add_executable (rotaryencoder-example rotaryencoder.cxx)
  80. add_executable (adxl345-example adxl345.cxx)
  81. add_executable (rpr220-example rpr220.cxx)
  82. add_executable (rpr220-intr-example rpr220-intr.cxx)
  83. add_executable (mma7660-example mma7660.cxx)
  84. add_executable (cjq4435-example cjq4435.cxx)
  85. add_executable (adxl335-example adxl335.cxx)
  86. add_executable (hmtrp-example hmtrp.cxx)
  87. add_executable (nunchuck-example nunchuck.cxx)
  88. add_executable (otp538u-example otp538u.cxx)
  89. add_executable (grovecollision-example grovecollision.cxx)
  90. add_executable (groveelectromagnet-example groveelectromagnet.cxx)
  91. add_executable (groveemg-example groveemg.cxx)
  92. add_executable (groveo2-example groveo2.cxx)
  93. add_executable (grovegsr-example grovegsr.cxx)
  94. add_executable (ina132-example ina132.cxx)
  95. add_executable (l298-example l298.cxx)
  96. add_executable (l298-stepper-example l298-stepper.cxx)
  97. add_executable (at42qt1070-example at42qt1070.cxx)
  98. add_executable (grovemd-example grovemd.cxx)
  99. add_executable (pca9685-example pca9685.cxx)
  100. add_executable (groveeldriver-example groveeldriver.cxx)
  101. add_executable (adafruitss-example adafruitss.cxx)
  102. add_executable (adafruitms1438-example adafruitms1438.cxx)
  103. add_executable (adafruitms1438-stepper-example adafruitms1438-stepper.cxx)
  104. add_executable (hx711-example hx711.cxx)
  105. add_executable (flex-example flex.cxx)
  106. add_executable (a110x-intr-example a110x-intr.cxx)
  107. add_executable (mhz16-example mhz16.cxx)
  108. add_executable (apds9002-example apds9002.cxx)
  109. add_executable (waterlevel-example waterlevel.cxx)
  110. add_executable (tm1637-example tm1637.cxx)
  111. add_executable (zfm20-example zfm20.cxx)
  112. add_executable (zfm20-register-example zfm20-register.cxx)
  113. add_executable (uln200xa-example uln200xa.cxx)
  114. add_executable (grovewfs-example grovewfs.cxx)
  115. add_executable (isd1820-example isd1820.cxx)
  116. add_executable (sx6119-example sx6119.cxx)
  117. add_executable (si114x-example si114x.cxx)
  118. add_executable (maxsonarez-example maxsonarez.cxx)
  119. add_executable (hm11-example hm11.cxx)
  120. add_executable (ht9170-example ht9170.cxx)
  121. add_executable (h3lis331dl-example h3lis331dl.cxx)
  122. include_directories (${PROJECT_SOURCE_DIR}/src/hmc5883l)
  123. include_directories (${PROJECT_SOURCE_DIR}/src/grove)
  124. include_directories (${PROJECT_SOURCE_DIR}/src/lcd)
  125. include_directories (${PROJECT_SOURCE_DIR}/src/buzzer)
  126. include_directories (${PROJECT_SOURCE_DIR}/src/my9221)
  127. include_directories (${PROJECT_SOURCE_DIR}/src/nrf24l01)
  128. include_directories (${PROJECT_SOURCE_DIR}/src/servo)
  129. include_directories (${PROJECT_SOURCE_DIR}/src/hcsr04)
  130. include_directories (${PROJECT_SOURCE_DIR}/src/max44000)
  131. include_directories (${PROJECT_SOURCE_DIR}/src/mma7455)
  132. include_directories (${PROJECT_SOURCE_DIR}/src/st7735)
  133. include_directories (${PROJECT_SOURCE_DIR}/src/max31855)
  134. include_directories (${PROJECT_SOURCE_DIR}/src/bmpx8x)
  135. include_directories (${PROJECT_SOURCE_DIR}/src/stepmotor)
  136. include_directories (${PROJECT_SOURCE_DIR}/src/pulsensor)
  137. include_directories (${PROJECT_SOURCE_DIR}/src/mic)
  138. include_directories (${PROJECT_SOURCE_DIR}/src/mpu9150)
  139. include_directories (${PROJECT_SOURCE_DIR}/src/maxds3231m)
  140. include_directories (${PROJECT_SOURCE_DIR}/src/max31723)
  141. include_directories (${PROJECT_SOURCE_DIR}/src/max5487)
  142. include_directories (${PROJECT_SOURCE_DIR}/src/nrf8001)
  143. include_directories (${PROJECT_SOURCE_DIR}/src/lpd8806)
  144. include_directories (${PROJECT_SOURCE_DIR}/src/mlx90614)
  145. include_directories (${PROJECT_SOURCE_DIR}/src/ecs1030)
  146. include_directories (${PROJECT_SOURCE_DIR}/src/gas)
  147. include_directories (${PROJECT_SOURCE_DIR}/src/tcs3414cs)
  148. include_directories (${PROJECT_SOURCE_DIR}/src/th02)
  149. include_directories (${PROJECT_SOURCE_DIR}/src/ttp223)
  150. include_directories (${PROJECT_SOURCE_DIR}/src/lsm303)
  151. include_directories (${PROJECT_SOURCE_DIR}/src/joystick12)
  152. include_directories (${PROJECT_SOURCE_DIR}/src/lol)
  153. include_directories (${PROJECT_SOURCE_DIR}/src/tsl2561)
  154. include_directories (${PROJECT_SOURCE_DIR}/src/htu21d)
  155. include_directories (${PROJECT_SOURCE_DIR}/src/mpl3115a2)
  156. include_directories (${PROJECT_SOURCE_DIR}/src/ldt0028)
  157. include_directories (${PROJECT_SOURCE_DIR}/src/am2315)
  158. include_directories (${PROJECT_SOURCE_DIR}/src/itg3200)
  159. include_directories (${PROJECT_SOURCE_DIR}/src/enc03r)
  160. include_directories (${PROJECT_SOURCE_DIR}/src/adc121c021)
  161. include_directories (${PROJECT_SOURCE_DIR}/src/ds1307)
  162. include_directories (${PROJECT_SOURCE_DIR}/src/a110x)
  163. include_directories (${PROJECT_SOURCE_DIR}/src/gp2y0a)
  164. include_directories (${PROJECT_SOURCE_DIR}/src/grovemoisture)
  165. include_directories (${PROJECT_SOURCE_DIR}/src/groveehr)
  166. include_directories (${PROJECT_SOURCE_DIR}/src/ta12200)
  167. include_directories (${PROJECT_SOURCE_DIR}/src/grovelinefinder)
  168. include_directories (${PROJECT_SOURCE_DIR}/src/grovevdiv)
  169. include_directories (${PROJECT_SOURCE_DIR}/src/grovewater)
  170. include_directories (${PROJECT_SOURCE_DIR}/src/guvas12d)
  171. include_directories (${PROJECT_SOURCE_DIR}/src/groveloudness)
  172. include_directories (${PROJECT_SOURCE_DIR}/src/mpr121)
  173. include_directories (${PROJECT_SOURCE_DIR}/src/ublox6)
  174. include_directories (${PROJECT_SOURCE_DIR}/src/yg1006)
  175. include_directories (${PROJECT_SOURCE_DIR}/src/wt5001)
  176. include_directories (${PROJECT_SOURCE_DIR}/src/ppd42ns)
  177. include_directories (${PROJECT_SOURCE_DIR}/src/mq303a)
  178. include_directories (${PROJECT_SOURCE_DIR}/src/grovespeaker)
  179. include_directories (${PROJECT_SOURCE_DIR}/src/rfr359f)
  180. include_directories (${PROJECT_SOURCE_DIR}/src/biss0001)
  181. include_directories (${PROJECT_SOURCE_DIR}/src/rotaryencoder)
  182. include_directories (${PROJECT_SOURCE_DIR}/src/adxl345)
  183. include_directories (${PROJECT_SOURCE_DIR}/src/rpr220)
  184. include_directories (${PROJECT_SOURCE_DIR}/src/mma7660)
  185. include_directories (${PROJECT_SOURCE_DIR}/src/cjq4435)
  186. include_directories (${PROJECT_SOURCE_DIR}/src/adxl335)
  187. include_directories (${PROJECT_SOURCE_DIR}/src/hmtrp)
  188. include_directories (${PROJECT_SOURCE_DIR}/src/nunchuck)
  189. include_directories (${PROJECT_SOURCE_DIR}/src/otp538u)
  190. include_directories (${PROJECT_SOURCE_DIR}/src/grovecollision)
  191. include_directories (${PROJECT_SOURCE_DIR}/src/groveelectromagnet)
  192. include_directories (${PROJECT_SOURCE_DIR}/src/groveemg)
  193. include_directories (${PROJECT_SOURCE_DIR}/src/groveo2)
  194. include_directories (${PROJECT_SOURCE_DIR}/src/grovegsr)
  195. include_directories (${PROJECT_SOURCE_DIR}/src/ina132)
  196. include_directories (${PROJECT_SOURCE_DIR}/src/l298)
  197. include_directories (${PROJECT_SOURCE_DIR}/src/at42qt1070)
  198. include_directories (${PROJECT_SOURCE_DIR}/src/grovemd)
  199. include_directories (${PROJECT_SOURCE_DIR}/src/pca9685)
  200. include_directories (${PROJECT_SOURCE_DIR}/src/groveeldriver)
  201. include_directories (${PROJECT_SOURCE_DIR}/src/adafruitss)
  202. include_directories (${PROJECT_SOURCE_DIR}/src/adafruitms1438)
  203. include_directories (${PROJECT_SOURCE_DIR}/src/hx711)
  204. include_directories (${PROJECT_SOURCE_DIR}/src/flex)
  205. include_directories (${PROJECT_SOURCE_DIR}/src/mhz16)
  206. include_directories (${PROJECT_SOURCE_DIR}/src/apds9002)
  207. include_directories (${PROJECT_SOURCE_DIR}/src/waterlevel)
  208. include_directories (${PROJECT_SOURCE_DIR}/src/tm1637)
  209. include_directories (${PROJECT_SOURCE_DIR}/src/zfm20)
  210. include_directories (${PROJECT_SOURCE_DIR}/src/uln200xa)
  211. include_directories (${PROJECT_SOURCE_DIR}/src/grovewfs)
  212. include_directories (${PROJECT_SOURCE_DIR}/src/isd1820)
  213. include_directories (${PROJECT_SOURCE_DIR}/src/sx6119)
  214. include_directories (${PROJECT_SOURCE_DIR}/src/si114x)
  215. include_directories (${PROJECT_SOURCE_DIR}/src/maxsonarez)
  216. include_directories (${PROJECT_SOURCE_DIR}/src/hm11)
  217. include_directories (${PROJECT_SOURCE_DIR}/src/ht9170)
  218. include_directories (${PROJECT_SOURCE_DIR}/src/h3lis331dl)
  219. target_link_libraries (hmc5883l-example hmc5883l ${CMAKE_THREAD_LIBS_INIT})
  220. target_link_libraries (groveled-example grove ${CMAKE_THREAD_LIBS_INIT})
  221. target_link_libraries (groveled-multi-example grove ${CMAKE_THREAD_LIBS_INIT})
  222. target_link_libraries (groverelay-example grove ${CMAKE_THREAD_LIBS_INIT})
  223. target_link_libraries (grovelight-example grove ${CMAKE_THREAD_LIBS_INIT})
  224. target_link_libraries (grovetemp-example grove ${CMAKE_THREAD_LIBS_INIT})
  225. target_link_libraries (grovebutton-example grove ${CMAKE_THREAD_LIBS_INIT})
  226. target_link_libraries (groverotary-example grove ${CMAKE_THREAD_LIBS_INIT})
  227. target_link_libraries (groveslide-example grove ${CMAKE_THREAD_LIBS_INIT})
  228. target_link_libraries (lcm1602-lcd-example i2clcd ${CMAKE_THREAD_LIBS_INIT})
  229. target_link_libraries (jhd1313m1-lcd-example i2clcd ${CMAKE_THREAD_LIBS_INIT})
  230. target_link_libraries (buzzer-sound-example buzzer ${CMAKE_THREAD_LIBS_INIT})
  231. target_link_libraries (my9221-ledbar-example my9221 ${CMAKE_THREAD_LIBS_INIT})
  232. target_link_libraries (my9221-updown-example my9221 ${CMAKE_THREAD_LIBS_INIT})
  233. target_link_libraries (nrf24l01-transmitter-example nrf24l01 ${CMAKE_THREAD_LIBS_INIT})
  234. target_link_libraries (nrf24l01-receiver-example nrf24l01 ${CMAKE_THREAD_LIBS_INIT})
  235. target_link_libraries (nrf24l01-broadcast-example nrf24l01 ${CMAKE_THREAD_LIBS_INIT})
  236. target_link_libraries (es08a-example servo ${CMAKE_THREAD_LIBS_INIT})
  237. target_link_libraries (son-hcsr04-example hcsr04 ${CMAKE_THREAD_LIBS_INIT})
  238. target_link_libraries (ssd1308-oled-example i2clcd ${CMAKE_THREAD_LIBS_INIT})
  239. target_link_libraries (ssd1327-oled-example i2clcd ${CMAKE_THREAD_LIBS_INIT})
  240. target_link_libraries (max44000-example max44000 ${CMAKE_THREAD_LIBS_INIT})
  241. target_link_libraries (mma7455-example mma7455 ${CMAKE_THREAD_LIBS_INIT})
  242. target_link_libraries (st7735-example st7735 ${CMAKE_THREAD_LIBS_INIT})
  243. target_link_libraries (max31855-example max31855 ${CMAKE_THREAD_LIBS_INIT})
  244. target_link_libraries (bmpx8x-example bmpx8x ${CMAKE_THREAD_LIBS_INIT})
  245. target_link_libraries (stepmotor-example stepmotor ${CMAKE_THREAD_LIBS_INIT})
  246. target_link_libraries (pulsensor-example pulsensor ${CMAKE_THREAD_LIBS_INIT})
  247. target_link_libraries (mic-example mic ${CMAKE_THREAD_LIBS_INIT})
  248. target_link_libraries (mpu9150-example mpu9150 ${CMAKE_THREAD_LIBS_INIT})
  249. target_link_libraries (maxds3231m-example maxds3231m ${CMAKE_THREAD_LIBS_INIT})
  250. target_link_libraries (max31723-example max31723 ${CMAKE_THREAD_LIBS_INIT})
  251. target_link_libraries (max5487-example max5487 ${CMAKE_THREAD_LIBS_INIT})
  252. target_link_libraries (nrf8001-broadcast-example nrf8001 ${CMAKE_THREAD_LIBS_INIT})
  253. target_link_libraries (nrf8001-helloworld-example nrf8001 ${CMAKE_THREAD_LIBS_INIT})
  254. target_link_libraries (lpd8806-example lpd8806 ${CMAKE_THREAD_LIBS_INIT})
  255. target_link_libraries (mlx90614-example mlx90614 ${CMAKE_THREAD_LIBS_INIT})
  256. target_link_libraries (ecs1030-example ecs1030 ${CMAKE_THREAD_LIBS_INIT})
  257. target_link_libraries (mq2-example gas ${CMAKE_THREAD_LIBS_INIT})
  258. target_link_libraries (mq3-example gas ${CMAKE_THREAD_LIBS_INIT})
  259. target_link_libraries (mq5-example gas ${CMAKE_THREAD_LIBS_INIT})
  260. target_link_libraries (mq9-example gas ${CMAKE_THREAD_LIBS_INIT})
  261. target_link_libraries (tp401-example gas ${CMAKE_THREAD_LIBS_INIT})
  262. target_link_libraries (tcs3414cs-example tcs3414cs ${CMAKE_THREAD_LIBS_INIT})
  263. target_link_libraries (th02-example th02 ${CMAKE_THREAD_LIBS_INIT})
  264. target_link_libraries (ttp223-example ttp223 ${CMAKE_THREAD_LIBS_INIT})
  265. target_link_libraries (lsm303-example lsm303 ${CMAKE_THREAD_LIBS_INIT})
  266. target_link_libraries (joystick12-example joystick12 ${CMAKE_THREAD_LIBS_INIT})
  267. target_link_libraries (lol-example lol ${CMAKE_THREAD_LIBS_INIT})
  268. target_link_libraries (tsl2561-example tsl2561 ${CMAKE_THREAD_LIBS_INIT})
  269. target_link_libraries (htu21d-example htu21d ${CMAKE_THREAD_LIBS_INIT})
  270. target_link_libraries (mpl3115a2-example mpl3115a2 ${CMAKE_THREAD_LIBS_INIT})
  271. target_link_libraries (ldt0028-example ldt0028 ${CMAKE_THREAD_LIBS_INIT})
  272. target_link_libraries (am2315-example am2315 ${CMAKE_THREAD_LIBS_INIT})
  273. target_link_libraries (itg3200-example itg3200 ${CMAKE_THREAD_LIBS_INIT})
  274. target_link_libraries (enc03r-example enc03r ${CMAKE_THREAD_LIBS_INIT})
  275. target_link_libraries (adc121c021-example adc121c021 ${CMAKE_THREAD_LIBS_INIT})
  276. target_link_libraries (ds1307-example ds1307 ${CMAKE_THREAD_LIBS_INIT})
  277. target_link_libraries (a110x-example a110x ${CMAKE_THREAD_LIBS_INIT})
  278. target_link_libraries (gp2y0a-example gp2y0a ${CMAKE_THREAD_LIBS_INIT})
  279. target_link_libraries (grovemoisture-example grovemoisture ${CMAKE_THREAD_LIBS_INIT})
  280. target_link_libraries (groveehr-example groveehr ${CMAKE_THREAD_LIBS_INIT})
  281. target_link_libraries (ta12200-example ta12200 ${CMAKE_THREAD_LIBS_INIT})
  282. target_link_libraries (grovelinefinder-example grovelinefinder ${CMAKE_THREAD_LIBS_INIT})
  283. target_link_libraries (grovevdiv-example grovevdiv ${CMAKE_THREAD_LIBS_INIT})
  284. target_link_libraries (grovewater-example grovewater ${CMAKE_THREAD_LIBS_INIT})
  285. target_link_libraries (guvas12d-example guvas12d ${CMAKE_THREAD_LIBS_INIT})
  286. target_link_libraries (groveloudness-example groveloudness ${CMAKE_THREAD_LIBS_INIT})
  287. target_link_libraries (mpr121-example mpr121 ${CMAKE_THREAD_LIBS_INIT})
  288. target_link_libraries (ublox6-example ublox6 ${CMAKE_THREAD_LIBS_INIT})
  289. target_link_libraries (yg1006-example yg1006 ${CMAKE_THREAD_LIBS_INIT})
  290. target_link_libraries (wt5001-example wt5001 ${CMAKE_THREAD_LIBS_INIT})
  291. target_link_libraries (ppd42ns-example ppd42ns ${CMAKE_THREAD_LIBS_INIT})
  292. target_link_libraries (mq303a-example mq303a ${CMAKE_THREAD_LIBS_INIT})
  293. target_link_libraries (grovespeaker-example grovespeaker ${CMAKE_THREAD_LIBS_INIT})
  294. target_link_libraries (rfr359f-example rfr359f ${CMAKE_THREAD_LIBS_INIT})
  295. target_link_libraries (biss0001-example biss0001 ${CMAKE_THREAD_LIBS_INIT})
  296. target_link_libraries (rotaryencoder-example rotaryencoder ${CMAKE_THREAD_LIBS_INIT})
  297. target_link_libraries (adxl345-example adxl345 ${CMAKE_THREAD_LIBS_INIT})
  298. target_link_libraries (rpr220-example rpr220 ${CMAKE_THREAD_LIBS_INIT})
  299. target_link_libraries (rpr220-intr-example rpr220 ${CMAKE_THREAD_LIBS_INIT})
  300. target_link_libraries (mma7660-example mma7660 ${CMAKE_THREAD_LIBS_INIT})
  301. target_link_libraries (cjq4435-example cjq4435 ${CMAKE_THREAD_LIBS_INIT})
  302. target_link_libraries (adxl335-example adxl335 ${CMAKE_THREAD_LIBS_INIT})
  303. target_link_libraries (hmtrp-example hmtrp ${CMAKE_THREAD_LIBS_INIT})
  304. target_link_libraries (nunchuck-example nunchuck ${CMAKE_THREAD_LIBS_INIT})
  305. target_link_libraries (otp538u-example otp538u ${CMAKE_THREAD_LIBS_INIT})
  306. target_link_libraries (grovecollision-example grovecollision ${CMAKE_THREAD_LIBS_INIT})
  307. target_link_libraries (groveelectromagnet-example groveelectromagnet ${CMAKE_THREAD_LIBS_INIT})
  308. target_link_libraries (groveemg-example groveemg ${CMAKE_THREAD_LIBS_INIT})
  309. target_link_libraries (groveo2-example groveo2 ${CMAKE_THREAD_LIBS_INIT})
  310. target_link_libraries (grovegsr-example grovegsr ${CMAKE_THREAD_LIBS_INIT})
  311. target_link_libraries (ina132-example ina132 ${CMAKE_THREAD_LIBS_INIT})
  312. target_link_libraries (l298-example l298 ${CMAKE_THREAD_LIBS_INIT})
  313. target_link_libraries (l298-stepper-example l298 ${CMAKE_THREAD_LIBS_INIT})
  314. target_link_libraries (at42qt1070-example at42qt1070 ${CMAKE_THREAD_LIBS_INIT})
  315. target_link_libraries (grovemd-example grovemd ${CMAKE_THREAD_LIBS_INIT})
  316. target_link_libraries (pca9685-example pca9685 ${CMAKE_THREAD_LIBS_INIT})
  317. target_link_libraries (groveeldriver-example groveeldriver ${CMAKE_THREAD_LIBS_INIT})
  318. target_link_libraries (adafruitss-example adafruitss ${CMAKE_THREAD_LIBS_INIT})
  319. target_link_libraries (adafruitms1438-example adafruitms1438 ${CMAKE_THREAD_LIBS_INIT})
  320. target_link_libraries (adafruitms1438-stepper-example adafruitms1438 ${CMAKE_THREAD_LIBS_INIT})
  321. target_link_libraries (hx711-example hx711 ${CMAKE_THREAD_LIBS_INIT})
  322. target_link_libraries (flex-example flex ${CMAKE_THREAD_LIBS_INIT})
  323. target_link_libraries (a110x-intr-example a110x ${CMAKE_THREAD_LIBS_INIT})
  324. target_link_libraries (mhz16-example mhz16 ${CMAKE_THREAD_LIBS_INIT})
  325. target_link_libraries (apds9002-example apds9002 ${CMAKE_THREAD_LIBS_INIT})
  326. target_link_libraries (waterlevel-example waterlevel ${CMAKE_THREAD_LIBS_INIT})
  327. target_link_libraries (tm1637-example tm1637 ${CMAKE_THREAD_LIBS_INIT})
  328. target_link_libraries (zfm20-example zfm20 ${CMAKE_THREAD_LIBS_INIT})
  329. target_link_libraries (zfm20-register-example zfm20 ${CMAKE_THREAD_LIBS_INIT})
  330. target_link_libraries (uln200xa-example uln200xa ${CMAKE_THREAD_LIBS_INIT})
  331. target_link_libraries (grovewfs-example grovewfs ${CMAKE_THREAD_LIBS_INIT})
  332. target_link_libraries (isd1820-example isd1820 ${CMAKE_THREAD_LIBS_INIT})
  333. target_link_libraries (sx6119-example sx6119 ${CMAKE_THREAD_LIBS_INIT})
  334. target_link_libraries (si114x-example si114x ${CMAKE_THREAD_LIBS_INIT})
  335. target_link_libraries (maxsonarez-example maxsonarez ${CMAKE_THREAD_LIBS_INIT})
  336. target_link_libraries (hm11-example hm11 ${CMAKE_THREAD_LIBS_INIT})
  337. target_link_libraries (ht9170-example ht9170 ${CMAKE_THREAD_LIBS_INIT})
  338. target_link_libraries (h3lis331dl-example h3lis331dl ${CMAKE_THREAD_LIBS_INIT})