mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-16 03:41:56 +00:00
Instead of putting object files inside libzephyr.a, simply build a separate static library as most other driver types are doing this already. Signed-off-by: Daniel Leung <daniel.leung@intel.com>
17 lines
798 B
CMake
17 lines
798 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_library()
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_CAN can_common.c)
|
|
zephyr_library_sources_ifdef(CONFIG_CAN_LOOPBACK can_loopback.c)
|
|
zephyr_library_sources_ifdef(CONFIG_CAN_MCAN can_mcan.c)
|
|
zephyr_library_sources_ifdef(CONFIG_CAN_MCP2515 can_mcp2515.c)
|
|
zephyr_library_sources_ifdef(CONFIG_CAN_MCUX_FLEXCAN can_mcux_flexcan.c)
|
|
zephyr_library_sources_ifdef(CONFIG_CAN_STM32 can_stm32.c)
|
|
zephyr_library_sources_ifdef(CONFIG_CAN_STM32FD can_stm32fd.c)
|
|
zephyr_library_sources_ifdef(CONFIG_CAN_RCAR can_rcar.c)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_USERSPACE can_handlers.c)
|
|
zephyr_library_sources_ifdef(CONFIG_CAN_SHELL can_shell.c)
|
|
zephyr_library_sources_ifdef(CONFIG_CAN_NET can_net.c)
|