Browse Source

Don't build qt4/5 lv2-ui bridges if moc is missing

tags/1.9.4
falkTX 10 years ago
parent
commit
d0ce28b9a1
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      source/Makefile.mk

+ 4
- 0
source/Makefile.mk View File

@@ -235,8 +235,12 @@ ifneq ($(MACOS_OR_WIN32),true)
HAVE_FFMPEG = $(shell pkg-config --exists libavcodec libavformat libavutil && echo true)
HAVE_GTK2 = $(shell pkg-config --exists gtk+-2.0 && echo true)
HAVE_GTK3 = $(shell pkg-config --exists gtk+-3.0 && echo true)
ifeq ($(HAVE_QT4),true)
HAVE_QTGUI4 = $(shell pkg-config --exists QtCore QtGui && echo true)
endif
ifeq ($(HAVE_QT5),true)
HAVE_QTGUI5 = $(shell pkg-config --exists Qt5Core Qt5Gui Qt5Widgets && echo true)
endif
HAVE_WAYLAND = $(shell pkg-config --exists wayland-client && echo true)
HAVE_X11 = $(shell pkg-config --exists x11 && echo true)
endif


Loading…
Cancel
Save