Get rid of a qmake warning
-
Hello gentlemen,
here's an extract of my qmake file, where I launch an externale makefile to build a library needed by my project:unix{ libenet.commands = cd $$PWD/src/enet && make -f Makefile QMAKE_EXTRA_TARGETS += libenet PRE_TARGETDEPS += libenet }Everything works, but I get this annoying warning:
:-1: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.How can I get rid of it? I already tried the trivial things, like adding
-j1to thelibenet.commandsline, but with no luck. -
Hello gentlemen,
here's an extract of my qmake file, where I launch an externale makefile to build a library needed by my project:unix{ libenet.commands = cd $$PWD/src/enet && make -f Makefile QMAKE_EXTRA_TARGETS += libenet PRE_TARGETDEPS += libenet }Everything works, but I get this annoying warning:
:-1: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.How can I get rid of it? I already tried the trivial things, like adding
-j1to thelibenet.commandsline, but with no luck. -