aboutsummaryrefslogtreecommitdiffstats
path: root/src/qmldevtools/qmldevtools.pro
blob: df1b7502827b8130c341e2e3ee3c6872ee491111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
option(host_build)
TARGET     = QtQmlDevTools
QT         = core
CONFIG += static internal_module qmldevtools_build

# Don't use pch because the auto-generated header refers to QtBootstrap,
# which doesn't exist
CONFIG -= precompile_header

# 2415: variable "xx" of static storage duration was declared but never referenced
# unused variable 'xx' [-Werror,-Wunused-const-variable]
intel_icc: WERROR += -ww2415
clang:if(greaterThan(QT_CLANG_MAJOR_VERSION, 3)|greaterThan(QT_CLANG_MINOR_VERSION, 3)): \
    WERROR += -Wno-error=unused-const-variable

load(qt_module)

include(../3rdparty/masm/masm-defs.pri)
include(../qml/parser/parser.pri)
include(../qml/jsruntime/jsruntime.pri)
include(../qml/compiler/compiler.pri)