2019-04-18 20:55:38 +08:00
|
|
|
#
|
|
|
|
# Copyright (c) 2018 Nordic Semiconductor ASA.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
|
2019-09-28 07:30:42 +08:00
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
2020-05-29 08:58:50 +08:00
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
2019-11-08 21:41:40 +08:00
|
|
|
project(flash_simulator)
|
2019-04-18 20:55:38 +08:00
|
|
|
|
|
|
|
FILE(GLOB app_sources src/*.c)
|
|
|
|
target_sources(app PRIVATE ${app_sources})
|