2019-04-06 09:08:09 -04:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2017-10-12 18:32:23 +05:30
|
|
|
zephyr_library()
|
2018-06-14 20:21:18 +02:00
|
|
|
zephyr_library_include_directories(${ZEPHYR_BASE}/drivers)
|
2017-10-12 18:32:23 +05:30
|
|
|
zephyr_library_sources(soc.c)
|
2019-11-26 14:19:36 -08:00
|
|
|
|
|
|
|
if("${ZEPHYR_TOOLCHAIN_VARIANT}" STREQUAL "xcc")
|
2019-12-16 09:35:03 -08:00
|
|
|
add_subdirectory(xcc)
|
2019-11-26 14:19:36 -08:00
|
|
|
endif()
|
2019-02-21 15:05:30 -08:00
|
|
|
|
|
|
|
if(CONFIG_SMP)
|
|
|
|
zephyr_library_sources(soc_mp.c)
|
|
|
|
endif()
|