blob: 623098fd3af7b30e00ee8531425336cc82d400e9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# -------------------------------------------------------------------
# Project file for YARR
#
# See 'Tools/qmake/README' for an overview of the build system
# -------------------------------------------------------------------
SOURCES += \
$$PWD/YarrInterpreter.cpp \
$$PWD/YarrPattern.cpp \
$$PWD/YarrSyntaxChecker.cpp \
$$PWD/YarrCanonicalizeUCS2.cpp
# For UString.h
v8 {
INCLUDEPATH += \
$$PWD/.. \
$$PWD/../runtime
}
|