1# Copyright 2019-2020 Peter Bigot Consulting
2# SPDX-License-Identifier: Apache-2.0
3
4cmake_minimum_required(VERSION 3.20.0)
5
6project(timeutil)
7find_package(Zephyr COMPONENTS unittest REQUIRED HINTS $ENV{ZEPHYR_BASE})
8target_sources(testbinary
9  PRIVATE
10    main.c
11    test_gmtime.c
12    test_s32.c
13    test_s64.c
14    test_sync.c
15)
16