aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/buildgraph/buildgraph.pri
blob: 2ed6be4fde6af7caad8e67fba859579f99bfd1d5 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
include(../../../install_prefix.pri)

SOURCES += \
    $$PWD/abstractcommandexecutor.cpp \
    $$PWD/artifact.cpp \
    $$PWD/artifactcleaner.cpp \
    $$PWD/artifactsscriptvalue.cpp \
    $$PWD/artifactvisitor.cpp \
    $$PWD/buildgraph.cpp \
    $$PWD/buildgraphloader.cpp \
    $$PWD/buildgraphnode.cpp \
    $$PWD/cycledetector.cpp \
    $$PWD/dependencyparametersscriptvalue.cpp \
    $$PWD/depscanner.cpp \
    $$PWD/emptydirectoriesremover.cpp \
    $$PWD/environmentscriptrunner.cpp \
    $$PWD/executor.cpp \
    $$PWD/executorjob.cpp \
    $$PWD/filedependency.cpp \
    $$PWD/inputartifactscanner.cpp \
    $$PWD/jscommandexecutor.cpp \
    $$PWD/nodeset.cpp \
    $$PWD/nodetreedumper.cpp \
    $$PWD/processcommandexecutor.cpp \
    $$PWD/productbuilddata.cpp \
    $$PWD/productinstaller.cpp \
    $$PWD/projectbuilddata.cpp \
    $$PWD/qtmocscanner.cpp \
    $$PWD/rawscanneddependency.cpp \
    $$PWD/rawscanresults.cpp \
    $$PWD/requestedartifacts.cpp \
    $$PWD/requesteddependencies.cpp \
    $$PWD/rulecommands.cpp \
    $$PWD/rulegraph.cpp \
    $$PWD/rulenode.cpp \
    $$PWD/rulesapplicator.cpp \
    $$PWD/rulesevaluationcontext.cpp \
    $$PWD/timestampsupdater.cpp \
    $$PWD/transformerchangetracking.cpp \
    $$PWD/transformer.cpp

HEADERS += \
    $$PWD/abstractcommandexecutor.h \
    $$PWD/artifact.h \
    $$PWD/artifactcleaner.h \
    $$PWD/artifactsscriptvalue.h \
    $$PWD/artifactvisitor.h \
    $$PWD/buildgraph.h \
    $$PWD/buildgraphloader.h \
    $$PWD/buildgraphnode.h \
    $$PWD/buildgraphvisitor.h \
    $$PWD/cycledetector.h \
    $$PWD/dependencyparametersscriptvalue.h \
    $$PWD/depscanner.h \
    $$PWD/emptydirectoriesremover.h \
    $$PWD/environmentscriptrunner.h \
    $$PWD/executor.h \
    $$PWD/executorjob.h \
    $$PWD/filedependency.h \
    $$PWD/forward_decls.h \
    $$PWD/inputartifactscanner.h \
    $$PWD/jscommandexecutor.h \
    $$PWD/nodeset.h \
    $$PWD/nodetreedumper.h \
    $$PWD/processcommandexecutor.h \
    $$PWD/productbuilddata.h \
    $$PWD/productinstaller.h \
    $$PWD/projectbuilddata.h \
    $$PWD/qtmocscanner.h \
    $$PWD/rawscanneddependency.h \
    $$PWD/rawscanresults.h \
    $$PWD/requestedartifacts.h \
    $$PWD/requesteddependencies.h \
    $$PWD/rescuableartifactdata.h \
    $$PWD/rulecommands.h \
    $$PWD/rulegraph.h \
    $$PWD/rulenode.h \
    $$PWD/rulesapplicator.h \
    $$PWD/rulesevaluationcontext.h \
    $$PWD/scriptclasspropertyiterator.h \
    $$PWD/timestampsupdater.h \
    $$PWD/transformerchangetracking.h \
    $$PWD/transformer.h

!qbs_no_dev_install {
    buildgraph_headers.files = $$PWD/forward_decls.h
    buildgraph_headers.path = $${QBS_INSTALL_PREFIX}/include/qbs/buildgraph
    INSTALLS += buildgraph_headers
}