For android purpose I am forced to use qmake instead of cmake. I can set C++ standard to C++11 using
CONFIG += c++11
but I also have some C files which uses C11 . when I compile them I get errors like
error: blahblah only allowed in C99 or C11 mode
So I tried
CONFIG += c11
which is also not working . what can I do set it to gnu11 or c11