summaryrefslogtreecommitdiffstats
path: root/tests/manual/wasm/network/echo_server/CMakeLists.txt
blob: 72ec413a0ea19fbb870e057322c010433cf4cbf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Copyright (C) 2024 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
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
)