Learn what Felgo offers to help your business succeed. Start your free evaluation today! Felgo for Your Business

Simple CoAP Client Example

cmake_minimum_required(VERSION 3.16)
project(simplecoapclient LANGUAGES CXX)

set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)

if(NOT DEFINED INSTALL_EXAMPLESDIR)
    set(INSTALL_EXAMPLESDIR "examples")
endif()

set(INSTALL_EXAMPLEDIR "${INSTALL_EXAMPLESDIR}/coap/simplecoapclient")

find_package(Qt6 REQUIRED COMPONENTS Coap Core Gui Network Widgets)

qt_add_executable(simplecoapclient
    main.cpp
    mainwindow.cpp mainwindow.h mainwindow.ui
    optiondialog.cpp optiondialog.h optiondialog.ui
)

set_target_properties(simplecoapclient PROPERTIES
    WIN32_EXECUTABLE TRUE
    MACOSX_BUNDLE TRUE
)

target_compile_definitions(simplecoapclient PUBLIC
    QT_DEPRECATED_WARNINGS
)

target_link_libraries(simplecoapclient PUBLIC
    Qt::Coap
    Qt::Core
    Qt::Gui
    Qt::Network
    Qt::Widgets
)

install(TARGETS simplecoapclient
    RUNTIME DESTINATION "${INSTALL_EXAMPLEDIR}"
Qt_Technology_Partner_RGB_475 Qt_Service_Partner_RGB_475_padded