Browse Source

Test for rcc when looking for Qt

tags/1.9.8
Filipe Coelho 6 years ago
parent
commit
9f21774512
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      source/Makefile.mk

+ 6
- 0
source/Makefile.mk View File

@@ -257,6 +257,9 @@ UIC_QT4 ?= $(shell pkg-config --variable=uic_location QtCore)
ifeq (,$(wildcard $(MOC_QT4)))
HAVE_QT4=false
endif
ifeq (,$(wildcard $(RCC_QT4)))
HAVE_QT4=false
endif
endif

ifeq ($(HAVE_QT5),true)
@@ -290,6 +293,9 @@ endif
ifeq (,$(wildcard $(MOC_QT5)))
HAVE_QT5=false
endif
ifeq (,$(wildcard $(RCC_QT5)))
HAVE_QT5=false
endif
endif

ifeq ($(HAVE_QT4),true)


Loading…
Cancel
Save