17 lines
281 B
CMake
17 lines
281 B
CMake
# LISA RTC Driver
|
|
#
|
|
# Copyright (c) 2025, LISTENAI
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(CONFIG_LISA_RTC)
|
|
|
|
listenai_library_named(lisa_rtc)
|
|
|
|
listenai_library_sources(
|
|
lisa_rtc_arcs.c # 平台适配层实现
|
|
)
|
|
|
|
listenai_include_directories(.)
|
|
|
|
endif() # CONFIG_LISA_RTC
|