summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_concurrent_module/CMakeLists.txt
blob: 901a48ff5c2d804cf0c348dffb4dacc3da11d7e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0


cmake_minimum_required(VERSION 3.16)

project(test_concurrent_module)

find_package(Qt6Concurrent 6.0.0 REQUIRED)

add_executable(mainapp main.cpp)

target_link_libraries(mainapp PRIVATE Qt::Concurrent)