-rw-r--r-- | qmake/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/qmake/Makefile b/qmake/Makefile index 3045766..1054da4 100644 --- a/qmake/Makefile +++ b/qmake/Makefile @@ -1,10 +1,17 @@ QMAKESPECSDIR=$(OPIEDIR)/mkspecs +include ../.config + +ifeq ($(strip $(CONFIG_USE_CCACHE)),y) CC = $(shell which ccache) gcc CXX = $(shell which ccache) g++ +else +CC = gcc +CXX = g++ +endif #qmake code OBJS=project.o property.o main.o makefile.o unixmake2.o unixmake.o msvc_nmake.o \ borland_bmake.o mingw_make.o msvc_dsp.o msvc_vcproj.o option.o \ winmakefile.o projectgenerator.o metrowerks_xml.o pbuilder_pbx.o \ msvc_objectmodel.o meta.o qtmd5.o |