blob: fb3101df11d39f2851c1152cfede86d336e89315 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
//! [cmakebuild]
\code
find_package(Qt6 REQUIRED COMPONENTS StateMachine)
target_link_libraries(mytarget PRIVATE Qt6::StateMachine)
\endcode
//! [cmakebuild]
//! [qmakebuild]
\code
QT += statemachine
\endcode
//! [qmakebuild]
|