zephyr/tests/kernel/threads/tls/CMakeLists.txt
Daniel Leung 55c3fb3ff1 tests: add a simple test for thread local storage
This adds a simple test to make sure TLS works.

Signed-off-by: Daniel Leung <daniel.leung@intel.com>
2020-10-24 10:52:00 -07:00

9 lines
220 B
CMake

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