# Make sure that LEX/YACC is executed first (to allow multi-core compilation)
lex.CONFIG += target_predeps
yacc_impl.CONFIG += target_predeps
yacc_decl.CONFIG += target_predeps
It does this at compile time:
> jom
jom 1.1.0 - empower your cores
E:\Qt\Qt5.6.0-GC\msvc2015_64\bin\jom.exe -f Makefile.Release
del DataFilter_yacc.h DataFilter_yacc.cpp
win_bison --file-prefix=y -t -d -p DataFilter -b DataFilter Core\DataFilter.y
Core\DataFilter.y: conflicts: 2 shift/reduce
move DataFilter.tab.h DataFilter_yacc.h
1 file(s) moved.
move DataFilter.tab.c DataFilter_yacc.cpp
1 file(s) moved.
I started using jom as make had issues and it seems to work ok most of the time.
Mark