mbed-os/rtos/CMakeLists.txt

29 lines
584 B
CMake

# Copyright (c) 2020 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
target_include_directories(mbed-core
INTERFACE
.
./include
./include/rtos
./include/rtos/internal
./source
)
target_sources(mbed-core
INTERFACE
source/EventFlags.cpp
source/Kernel.cpp
source/Mutex.cpp
source/Semaphore.cpp
source/ThisThread.cpp
source/ConditionVariable.cpp
source/Thread.cpp
)
target_compile_definitions(mbed-core
INTERFACE
MBED_CONF_RTOS_API_PRESENT=1
)