aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/language/language.pri
blob: e07a671b9170ad60a59efb2dd64e89b84fcdbbbb (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
include(../../../install_prefix.pri)

HEADERS += \
    $$PWD/artifactproperties.h \
    $$PWD/astimportshandler.h \
    $$PWD/astpropertiesitemhandler.h \
    $$PWD/asttools.h \
    $$PWD/builtindeclarations.h \
    $$PWD/deprecationinfo.h \
    $$PWD/evaluationdata.h \
    $$PWD/evaluator.h \
    $$PWD/evaluatorscriptclass.h \
    $$PWD/filecontext.h \
    $$PWD/filecontextbase.h \
    $$PWD/filetags.h \
    $$PWD/forward_decls.h \
    $$PWD/identifiersearch.h \
    $$PWD/item.h \
    $$PWD/itemdeclaration.h \
    $$PWD/itemobserver.h \
    $$PWD/itempool.h \
    $$PWD/itemreader.h \
    $$PWD/itemreaderastvisitor.h \
    $$PWD/itemreadervisitorstate.h \
    $$PWD/itemtype.h \
    $$PWD/jsimports.h \
    $$PWD/language.h \
    $$PWD/loader.h \
    $$PWD/moduleloader.h \
    $$PWD/modulemerger.h \
    $$PWD/moduleproviderinfo.h \
    $$PWD/preparescriptobserver.h \
    $$PWD/projectresolver.h \
    $$PWD/property.h \
    $$PWD/propertydeclaration.h \
    $$PWD/propertymapinternal.h \
    $$PWD/qualifiedid.h \
    $$PWD/resolvedfilecontext.h \
    $$PWD/scriptengine.h \
    $$PWD/scriptimporter.h \
    $$PWD/scriptpropertyobserver.h \
    $$PWD/value.h

SOURCES += \
    $$PWD/artifactproperties.cpp \
    $$PWD/astimportshandler.cpp \
    $$PWD/astpropertiesitemhandler.cpp \
    $$PWD/asttools.cpp \
    $$PWD/builtindeclarations.cpp \
    $$PWD/evaluator.cpp \
    $$PWD/evaluatorscriptclass.cpp \
    $$PWD/filecontext.cpp \
    $$PWD/filecontextbase.cpp \
    $$PWD/filetags.cpp \
    $$PWD/identifiersearch.cpp \
    $$PWD/item.cpp \
    $$PWD/itemdeclaration.cpp \
    $$PWD/itempool.cpp \
    $$PWD/itemreader.cpp \
    $$PWD/itemreaderastvisitor.cpp \
    $$PWD/itemreadervisitorstate.cpp \
    $$PWD/language.cpp \
    $$PWD/loader.cpp \
    $$PWD/moduleloader.cpp \
    $$PWD/modulemerger.cpp \
    $$PWD/preparescriptobserver.cpp \
    $$PWD/scriptpropertyobserver.cpp \
    $$PWD/projectresolver.cpp \
    $$PWD/property.cpp \
    $$PWD/propertydeclaration.cpp \
    $$PWD/propertymapinternal.cpp \
    $$PWD/qualifiedid.cpp \
    $$PWD/resolvedfilecontext.cpp \
    $$PWD/scriptengine.cpp \
    $$PWD/scriptimporter.cpp \
    $$PWD/value.cpp

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