blob: ccd26b3ea641a86d4ed2df3b32c240f3e30866f4 [file] [log] [blame]
# Top-level CMakeLists.txt for the skeleton application.
#
# Copyright (c) 2017 Open Source Foundries Limited
#
# SPDX-License-Identifier: Apache-2.0
#
# This provides a basic application structure suitable for communication using
# mcumgr. It can be used as a starting point for new applications.
# Standard Zephyr application boilerplate.
include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
project(NONE)
target_sources(app PRIVATE
src/main.c
)
zephyr_link_libraries_ifdef(CONFIG_FILE_SYSTEM_NFFS NFFS)