Details
-
Bug
-
Resolution: Cannot Reproduce
-
P3: Somewhat important
-
4.5.2
-
None
Description
Community contribution on this issue is invited. For the guidelines on code contribution to Qt see
http://qt.gitorious.org/qt/pages/QtContributionGuidelines
Test case:
Given the testcase.pro shown below
running
make "CONFIG+=test1"
will lead to the printing of
test1 test matched
however running
make "CONFIG+=test2"
will NOT lead to the printing of
test2 test matched
Ideally qmake would warn for incorrect useage of scopes.
testcase.pro
=========snip =========
test1 {
message(test1 test matched)
} else test2 {
message(test2 test matched)
}
=======================