Move the SoC outside of the architecture tree and put them at the same level as boards and architectures allowing both SoCs and boards to be maintained outside the tree. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
11 lines
167 B
CMake
11 lines
167 B
CMake
zephyr_include_directories(.)
|
|
|
|
zephyr_sources(
|
|
idle.c
|
|
soc_irq.S
|
|
soc_common_irq.c
|
|
)
|
|
|
|
if(NOT(CONFIG_SOC_SERIES_RISCV32_QEMU))
|
|
zephyr_sources(vector.S)
|
|
endif()
|