zephyr/tests/kernel/condvar/condvar_api/CMakeLists.txt
Anas Nashif 6d53606777 tests: kernel: add test for condition variables
add a test for condition variables.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
2021-01-19 08:55:47 -05:00

9 lines
224 B
CMake

# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.13.1)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(condvar)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})