aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/doc/snippets/code/doc_src_qtqml.cmake
blob: e22aa53650c345d588d2ea693df240667e60b93b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause

#! [0]
find_package(Qt6 REQUIRED COMPONENTS Qml)
target_link_libraries(mytarget PRIVATE Qt6::Qml)
#! [0]

#! [1]
find_package(Qt6 REQUIRED COMPONENTS QmlIntegration)
target_link_libraries(mytarget PRIVATE Qt6::QmlIntegration)
#! [1]