Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

CMakeLists.txt 279B

12345678910111213
  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. hardware_structs
  10. )