2018-11-25 01:29:48 +08:00
|
|
|
#
|
|
|
|
# Copyright (c) 2018 Linaro Ltd.
|
|
|
|
#
|
2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2018-11-25 01:29:48 +08:00
|
|
|
#
|
2019-04-06 21:08:09 +08:00
|
|
|
|
2018-12-11 23:33:23 +08:00
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
2020-05-29 12:02:17 +08:00
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
2018-10-25 22:54:09 +08:00
|
|
|
project(ccs811)
|
2018-01-06 00:53:06 +08:00
|
|
|
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
|
|
target_sources(app PRIVATE ${app_sources})
|