aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/corelib/language/language.pri
blob: 09d7e9a1b1909ff7474eacd60065ccb12debbfeb (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
HEADERS += \
    $$PWD/artifactproperties.h \
    $$PWD/asttools.h \
    $$PWD/builtindeclarations.h \
    $$PWD/builtinvalue.h \
    $$PWD/evaluationdata.h \
    $$PWD/evaluator.h \
    $$PWD/evaluatorscriptclass.h \
    $$PWD/filecontext.h \
    $$PWD/filetags.h \
    $$PWD/forward_decls.h \
    $$PWD/functiondeclaration.h \
    $$PWD/identifiersearch.h \
    $$PWD/importversion.h \
    $$PWD/item.h \
    $$PWD/itemdeclaration.h \
    $$PWD/itemobserver.h \
    $$PWD/itempool.h \
    $$PWD/itemreader.h \
    $$PWD/itemreaderastvisitor.h \
    $$PWD/jsimports.h \
    $$PWD/language.h \
    $$PWD/loader.h \
    $$PWD/moduleloader.h \
    $$PWD/preparescriptobserver.h \
    $$PWD/projectresolver.h \
    $$PWD/property.h \
    $$PWD/propertydeclaration.h \
    $$PWD/propertymapinternal.h \
    $$PWD/scriptengine.h \
    $$PWD/scriptpropertyobserver.h \
    $$PWD/value.h

SOURCES += \
    $$PWD/artifactproperties.cpp \
    $$PWD/asttools.cpp \
    $$PWD/builtindeclarations.cpp \
    $$PWD/builtinvalue.cpp \
    $$PWD/evaluator.cpp \
    $$PWD/evaluatorscriptclass.cpp \
    $$PWD/filecontext.cpp \
    $$PWD/filetags.cpp \
    $$PWD/identifiersearch.cpp \
    $$PWD/importversion.cpp \
    $$PWD/item.cpp \
    $$PWD/itemdeclaration.cpp \
    $$PWD/itempool.cpp \
    $$PWD/itemreader.cpp \
    $$PWD/itemreaderastvisitor.cpp \
    $$PWD/language.cpp \
    $$PWD/loader.cpp \
    $$PWD/moduleloader.cpp \
    $$PWD/preparescriptobserver.cpp \
    $$PWD/projectresolver.cpp \
    $$PWD/propertydeclaration.cpp \
    $$PWD/propertymapinternal.cpp \
    $$PWD/scriptengine.cpp \
    $$PWD/value.cpp

all_tests {
    HEADERS += $$PWD/tst_language.h
    SOURCES += $$PWD/tst_language.cpp
    OTHER_FILES += $$PWD/testdata/*
}

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