summaryrefslogtreecommitdiffstats
path: root/tests/manual/wasm/network/echo_server/CMakeLists.txt
blob: cf98163fb875ff89c64a69270702583ce1e3a21f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
project(echo_server)
cmake_minimum_required(VERSION 3.19)

find_package(Qt6 COMPONENTS Core)
find_package(Qt6 COMPONENTS network)

qt_add_executable(echo_server
    main.cpp
)

target_link_libraries(echo_server PUBLIC
    Qt::Core
    Qt::Network
)