diff options
| author | Michal Hanus <hanus.michal@divelit.cz> | 2024-04-01 14:53:48 +0200 |
|---|---|---|
| committer | Michal Hanus <hanus.michal@divelit.cz> | 2024-04-01 14:53:48 +0200 |
| commit | e6318f51769ec684a713876460d89cfb3f595c11 (patch) | |
| tree | 787b0de93bf885ba9793ddeb8d86e1f4e562a8d6 /mqtt_simple/CMakeLists.txt | |
| parent | 1173bd81904c534b4b6d62e3f7e8e1b195b4cc4c (diff) | |
Diffstat (limited to 'mqtt_simple/CMakeLists.txt')
| -rw-r--r-- | mqtt_simple/CMakeLists.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mqtt_simple/CMakeLists.txt b/mqtt_simple/CMakeLists.txt new file mode 100644 index 0000000..8fe58a9 --- /dev/null +++ b/mqtt_simple/CMakeLists.txt @@ -0,0 +1,14 @@ +# +# 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(mqtt-simple) + +# NORDIC SDK APP START +target_sources(app PRIVATE src/main.c) +# NORDIC SDK APP END |
