2019-09-12 23:33:55 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
|
|
|
|
2020-02-12 22:00:46 +08:00
|
|
|
find_package(Zephyr HINTS $ENV{ZEPHYR_BASE})
|
2019-09-12 23:33:55 +08:00
|
|
|
project(gettimeofday)
|
|
|
|
|
2020-02-12 22:00:46 +08:00
|
|
|
#target_include_directories(app PRIVATE ${ZEPHYR_BASE}/include/posix)
|
2019-09-12 23:33:55 +08:00
|
|
|
target_sources(app PRIVATE src/main.c)
|