6a51062e99
This allows us to have different flags for the compilers for supporting the same feature. For example, the official flag in GCC to support AVX2 is -mavx2, but ICC does not support it (yet), requiring -march=core-avx2 or -xCORE-AVX2. That flag, instead, enables support for all the features that the "Core-AVX2" processor (codename Haswell) will support. And clearly, the MSVC flags are different. Change-Id: I33b6d8617520925e807747180a8dbaafd79b7a9a Reviewed-by: Sean Harmer <sean.harmer@kdab.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com>
5 lines
151 B
Prolog
5 lines
151 B
Prolog
SOURCES = neon.cpp
|
|
CONFIG -= x11 qt
|
|
isEmpty(QMAKE_CFLAGS_NEON):error("This compiler does not support Neon")
|
|
else:QMAKE_CXXFLAGS += $$QMAKE_CFLAGS_NEON
|