summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_multiple_find_package/CMakeLists.txt
blob: 1b50c204ca117d04d0b01582bac67a45d2ba5e01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause


cmake_minimum_required(VERSION 3.16)

project(test_multiple_find_package)

find_package(Qt6Core REQUIRED)

add_subdirectory(subdir1)

add_executable(exe1 main.cpp)
target_link_libraries(exe1 Qt::Core)