cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(blinky)

target_sources(app PRIVATE src/main.c)

# WolfSSL/WolfMQTT Configuration
target_include_directories(app PUBLIC ${APPLICATION_SOURCE_DIR})

# To allow custom WolfSSL settings
zephyr_compile_definitions(WOLFSSL_USER_SETTINGS)