blob: 2d5c2ace243702bb7adc3793e6b503269cd2b06e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#
# Copyright (c) 2018 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(cellular_fundamentals)
# NORDIC SDK APP START
target_sources(app PRIVATE src/mqtt_connection.c)
target_sources(app PRIVATE src/main.c)
# NORDIC SDK APP END
|