We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25834ff commit 5b09052Copy full SHA for 5b09052
tests/net/lib/mqtt/v5_0/mqtt_packet/CMakeLists.txt
@@ -0,0 +1,12 @@
1
+# SPDX-License-Identifier: Apache-2.0
2
+
3
+cmake_minimum_required(VERSION 3.20.0)
4
5
+find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
6
+project(mqtt_5_packet)
7
8
+target_include_directories(app PRIVATE
9
+ ${ZEPHYR_BASE}/subsys/net/lib/mqtt
10
+)
11
+FILE(GLOB app_sources src/*.c)
12
+target_sources(app PRIVATE ${app_sources})
tests/net/lib/mqtt/v5_0/mqtt_packet/prj.conf
@@ -0,0 +1,7 @@
+CONFIG_ZTEST=y
+CONFIG_NET_TEST=y
+CONFIG_NETWORKING=y
+CONFIG_ENTROPY_GENERATOR=y
+CONFIG_TEST_RANDOM_GENERATOR=y
+CONFIG_MQTT_LIB=y
+CONFIG_MQTT_VERSION_5_0=y
0 commit comments