using pre processor defines in .pro
-
Hi All,
in my standard makefile project I use some defines to stop some sections of code being built. However I need to translate over to qt and add to my .pro. In my makefile I usedDDEFS =-DWITH_NONAMESPACES -DWITH_OPENSSL ..... then all: $(CC) $(CPFLAGS) $(CPPFLAGS) $(DDEFS) $(DINCDIR) $(SOURCE) $(DLIBDIR) -o $(PROGRAM) $(DLIBDIR) $(LIBS)How can I do this in qt with .pro? Thanks