summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_multiple_find_package/CMakeLists.txt
blob: adf7de5640df2fc09219be16e9a9799919e6797b (plain)
1
2
3
4
5
6
7
8
9
10
11

cmake_minimum_required(VERSION 3.14)

project(test_multiple_find_package)

find_package(Qt6Core REQUIRED)

add_subdirectory(subdir1)

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