d398e9631b
Only build when needed and adapt existing users to pull this in when needed. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
14 lines
388 B
CMake
14 lines
388 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
zephyr_sources(
|
|
heap.c
|
|
multi_heap.c
|
|
)
|
|
|
|
zephyr_sources_ifdef(CONFIG_SYS_HEAP_INFO heap_info.c)
|
|
zephyr_sources_ifdef(CONFIG_SYS_HEAP_VALIDATE heap_validate.c)
|
|
zephyr_sources_ifdef(CONFIG_SYS_HEAP_STRESS heap_stress.c)
|
|
zephyr_sources_ifdef(CONFIG_SHARED_MULTI_HEAP shared_multi_heap.c)
|
|
|
|
zephyr_sources_ifdef(CONFIG_HEAP_LISTENER heap_listener.c)
|