blob: 42dc538cb13b3b84a057f946a270392e150603f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
include($QT_INSTALL_DOCS/global/qt-module-defaults.qdocconf)
include($QT_INSTALL_DOCS/config/exampleurl-qtscxml.qdocconf)
project = QtStateMachine
description = Qt State Machine Reference Documentation
version = $QT_VERSION
imagedirs = images src/images
# Install path for the examples
examplesinstallpath = statemachine
exampledirs = ../../../examples/statemachine \
snippets
# Path to the root of qtscxml (for automatic linking to source code)
url.sources.rootdir = ../../..
qhp.projects = QtStateMachine
qhp.QtStateMachine.file = qtstatemachine.qhp
qhp.QtStateMachine.namespace = org.qt-project.qtstatemachine.$QT_VERSION_TAG
qhp.QtStateMachine.virtualFolder = qtstatemachine
qhp.QtStateMachine.indexTitle = Qt State Machine
qhp.QtStateMachine.indexRoot =
qhp.QtStateMachine.subprojects = manual examples classes qmltypes
qhp.QtStateMachine.subprojects.classes.title = C++ Classes
qhp.QtStateMachine.subprojects.classes.indexTitle = Qt State Machine C++ Classes
qhp.QtStateMachine.subprojects.classes.selectors = class headerfile
qhp.QtStateMachine.subprojects.classes.sortPages = true
qhp.QtStateMachine.subprojects.qmltypes.title = QML Types
qhp.QtStateMachine.subprojects.qmltypes.indexTitle = Qt State Machine QML Types
qhp.QtStateMachine.subprojects.qmltypes.selectors = qmltype
qhp.QtStateMachine.subprojects.qmltypes.sortPages = true
qhp.QtStateMachine.subprojects.examples.title = Examples
qhp.QtStateMachine.subprojects.examples.indexTitle = Qt State Machine Examples
qhp.QtStateMachine.subprojects.examples.selectors = example
qhp.QtStateMachine.subprojects.manual.title = Qt State Machine
qhp.QtStateMachine.subprojects.manual.indexTitle = Qt State Machine module topics
qhp.QtStateMachine.subprojects.manual.type = manual
depends += qtcore qtdoc qmake qtquick qtwidgets qtgui qtqml qtscxml qtcmake
headerdirs = .. \
../gui \
../../statemachineqml \
../../../examples/statemachine
sourcedirs += .. \
../gui \
../../statemachineqml \
../../../examples/statemachine
tagfile = qtstatemachine.tags
navigation.landingpage = "Qt State Machine"
navigation.cppclassespage = "Qt State Machine C++ Classes"
navigation.qmltypespage = "Qt State Machine QML Types"
# Auto-generate navigation linking based on "Qt State Machine module topics":
navigation.toctitles = "Qt State Machine module topics"
navigation.toctitles.inclusive = false
# Highlighted examples in Data Processing & IO category
manifestmeta.highlighted.names = "QtStateMachine/Traffic Light"
|