zephyr/tests/lib/time/CMakeLists.txt
Marcin Niestroj 4682cf12bb tests: lib: time: add test for time() function
Add test cases for time() function.

Signed-off-by: Marcin Niestroj <m.niestroj@emb.dev>
2021-03-19 09:56:53 -04:00

9 lines
221 B
CMake

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