8512f5179d
Ignore for loops in the pro2cmake.py parser and add a unit test for that. Change-Id: I2a0c075c45cf56f4f24ada2d53e8e8e94ce19f26 Reviewed-by: Alexandru Croitor <alexandru.croitor@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)
|
|
}
|
|
}
|