#
# Copyright (c) 2022 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

cmake_minimum_required(VERSION 3.20.0)

find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(remote_shell)

include(${ZEPHYR_BASE}/samples/subsys/usb/common/common.cmake)
# NORDIC SDK APP START
target_sources(app PRIVATE
  src/main.c
  src/dfu.c
  src/shell_ipc_host.c
)
# NORDIC SDK APP END
