- 
    
Bug
 - 
    Resolution: Done
 - 
    
P4: Low
 - 
    Qt Creator 2.5.0-beta
 - 
    None
 
- 
        29957687768ebbe97de778b5286670dd22486fb9
 
Consider the following configurations, in which dummy is not set as an active configuration:
#1
SOURCES += foo1/bar.cpp foo2/bar.cpp
#2
dummy {
  SOURCES += foo1/bar.cpp foo2/bar.cpp
}
#3
DIRS = foo1 foo2
for(dir, DIRS):SOURCES += $${dir}/bar.cpp
#4
DIRS = foo1 foo2
dummy {
  for(dir, DIRS):SOURCES += $${dir}/bar.cpp
}
The project manager uses SOURCES and HEADERS also from inactive configurations, which is useful.
First 3 configurations will result in an equivalent source tree in QtC. The 4th one will not display the files in the project tree.
- relates to
 - 
                    
QTBUG-8550 lupdate don't evaluate FOR in pro file
-         
 - Closed
 
 -         
 
- resulted in
 - 
                    
QTCREATORBUG-10561 make qmake evaluator perfectly cumulative
-         
 - Closed
 
 -