etl/zephyr
wandns dc6f028b99
Workaround for link libraries call on Zephyr platform (#1145)
zephyr_link_interface() does not work as intended because the
implementation in zephyr/cmake/modules/extensions.cmake:

function(zephyr_link_interface interface)
  target_link_libraries(${interface} INTERFACE zephyr_interface)
endfunction()

is backwards, i.e., target_link_libraries(etl INTERFACE zephyr_interface)
vs. target_link_libraries(zephyr_interface INTERFACE etl).

The workaround results in the following CMake code being executed:

target_link_libraries(zephyr_interface INTERFACE etl::etl)
2025-07-10 10:17:01 +01:00
..
CMakeLists.txt Workaround for link libraries call on Zephyr platform (#1145) 2025-07-10 10:17:01 +01:00
Kconfig Fix West support and add ETL configuration options to Kconfig (#1114) 2025-06-02 23:21:48 +01:00
module.yml Fix West support and add ETL configuration options to Kconfig (#1114) 2025-06-02 23:21:48 +01:00