Skip to content

Commit

Permalink
Fix build without qtjsbackend
Browse files Browse the repository at this point in the history
QT += v8-private is not necessary anymore

Change-Id: I1faf7627388373a8e05432a88fa1f013e12ef57a
Reviewed-by: J-P Nurmi <jpnurmi@digia.com>
  • Loading branch information
Simon Hausmann authored and The Qt Project committed Aug 12, 2013
1 parent fcdb7d3 commit 50d3556
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/layouts/layouts.pro
Expand Up @@ -3,7 +3,7 @@ TARGET = qquicklayoutsplugin
TARGETPATH = QtQuick/Layouts
IMPORT_VERSION = 2.1

QT *= qml-private quick-private v8-private gui-private core-private
QT *= qml-private quick-private gui-private core-private

QMAKE_DOCS = $$PWD/doc/qtquicklayouts.qdocconf

Expand Down
2 changes: 1 addition & 1 deletion tests/auto/activeFocusOnTab/activeFocusOnTab.pro
Expand Up @@ -8,6 +8,6 @@ include (../shared/util.pri)

TESTDATA = data/*

QT += core-private gui-private v8-private qml-private quick-private testlib
QT += core-private gui-private qml-private quick-private testlib
qtHaveModule(widgets) { QT += widgets }
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0
2 changes: 1 addition & 1 deletion tests/auto/applicationwindow/applicationwindow.pro
Expand Up @@ -4,7 +4,7 @@ SOURCES += tst_applicationwindow.cpp

macx:CONFIG -= app_bundle

QT += core-private gui-private qml-private quick-private v8-private testlib
QT += core-private gui-private qml-private quick-private testlib

include (../shared/util.pri)

Expand Down
2 changes: 1 addition & 1 deletion tests/auto/shared/util.pri
@@ -1,4 +1,4 @@
QT += core-private gui-private v8-private qml-private quick-private
QT += core-private gui-private qml-private quick-private

HEADERS += $$PWD/visualtestutil.h \
$$PWD/util.h
Expand Down

0 comments on commit 50d3556

Please sign in to comment.