1# SPDX-License-Identifier: Apache-2.0
2
3# Clear the toolchain defined C++ library property when using minimal C++ lib.
4set_linker_property(PROPERTY c++_library  "")
5set_linker_property(PROPERTY cpp_base "")
6
7zephyr_system_include_directories(include)
8
9zephyr_sources(
10  cpp_virtual.c
11  cpp_vtable.cpp
12  cpp_new.cpp
13)
14