OBLFR/components/CMakeLists.txt
Justin Hammond 53ceb5fd82
RPMsg, Mailbox updates (#10)
* Update Readme

* Port the IRQ_Forward Code to a component So it can be used in any M0 firmware

* update d0_lowload to use new IRQ forwarding code

* Enable Ethernet, USB, and GPIO forwarding as well

* add RPMSG component

* Fix crash if there are no timers registered.

* Update rpmsg and mailbox code for latest kernel updates
2023-02-16 17:24:01 +08:00

10 lines
583 B
CMake

sdk_add_subdirectory_ifdef(CONFIG_COMPONENT_SYSTEM oblfr)
#if we do not include the SYSTEM component, we need to at add the include directory */
sdk_add_include_directories_ifndef(CONFIG_COMPONENT_SYSTEM_OBLFR oblfr/include)
sdk_add_subdirectory_ifdef(CONFIG_COMPONENT_BUTTON button)
sdk_add_subdirectory_ifdef(CONFIG_COMPONENT_STATUS_LED indicator)
sdk_add_subdirectory_ifdef(CONFIG_COMPONENT_TIMER timer)
sdk_add_subdirectory_ifdef(CONFIG_COMPONENT_NVKVS nvkvs)
sdk_add_subdirectory_ifdef(CONFIG_COMPONENT_RPMSG rpmsg)
sdk_add_subdirectory_ifdef(CONFIG_COMPONENT_MAILBOX mailbox)