e32812d1d2
Since the x86_simd/main.cpp file already has all the source for each and every test anyway, just reuse it. Change-Id: I938b024e38bf4aac9154fffd14f779f450827fb9 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
12 lines
296 B
Prolog
12 lines
296 B
Prolog
SOURCES = main.cpp
|
|
for (config, SIMD) {
|
|
uc = $$upper($$config)
|
|
DEFINES += QT_COMPILER_SUPPORTS_$${uc}
|
|
|
|
add_cflags {
|
|
cflags = QMAKE_CFLAGS_$${uc}
|
|
!defined($$cflags, var): error("This compiler does not support $${uc}")
|
|
QMAKE_CXXFLAGS += $$eval($$cflags)
|
|
}
|
|
}
|