WIP: proper dependencies to avoid build issues.

This commit is contained in:
Matthias Koefferlein 2018-06-03 12:16:52 +02:00
parent a522a14109
commit 0ed898e3c2
3 changed files with 7 additions and 3 deletions

View File

@ -9,3 +9,8 @@ SUBDIRS = \
QtNetwork \
QtDesigner
# This is weired, but true: because QSignalMapper (inside QtCore) has a QWidget
# argument, we need to enforce linking of QtCore against QtGui so this GSI declaration
# is available there
# TODO:
QtCore.depends += QtGui

View File

@ -40,7 +40,7 @@ equals(HAVE_PYTHON, "1") {
LANG_DEPENDS += pya
pya.depends += gsi db
SUBDIRS += pymod
pymod.depends += pya
pymod.depends += pya lay
} else {
SUBDIRS += pyastub
pyastub.depends += gsi
@ -69,7 +69,7 @@ buddies.depends += rdb lib $$LANG_DEPENDS
equals(HAVE_QTBINDINGS, "1") {
SUBDIRS += gsiqt
gsiqt.depends += gsi
gsiqt.depends += gsi db
laybasic.depends += gsiqt
pymod.depends += gsiqt
}

View File

@ -31,4 +31,3 @@ equals(HAVE_QT5, "1") {
QtDesigner
}