You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 291B

1234567891011121314
  1. add_library(picowota_reboot INTERFACE)
  2. target_include_directories(picowota_reboot INTERFACE
  3. ${CMAKE_CURRENT_LIST_DIR}/include
  4. )
  5. target_sources(picowota_reboot INTERFACE
  6. ${CMAKE_CURRENT_LIST_DIR}/reboot.c
  7. )
  8. target_link_libraries(picowota_reboot INTERFACE
  9. cmsis_core
  10. hardware_structs
  11. )