From 9f21774512964661255e372ff266f25f9ad56ca9 Mon Sep 17 00:00:00 2001 From: Filipe Coelho Date: Tue, 9 Jan 2018 21:18:03 +0100 Subject: [PATCH] Test for rcc when looking for Qt --- source/Makefile.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/Makefile.mk b/source/Makefile.mk index 292f79e46..8fa447aa1 100644 --- a/source/Makefile.mk +++ b/source/Makefile.mk @@ -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)