aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/projectexplorer/projectmacro.h
Commit message (Collapse)AuthorAgeFilesLines
* ProjectExplorer: Fix build with namespaced QtChristian Stenger2017-09-201-1/+1
| | | | | | | Broke with b6e12f4a. Change-Id: I81af93bfe19801805fd558e3445cd9788f2574b3 Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>
* Convert macros from plain QByteArray to a vector of structsMarco Bubke2017-09-141-0/+102
The old code model expected the macros as C++ formatted text ("#define Foo 42) but newer targets like the Clang codemodel expect key value arguments like "-DFoo=42". So instead of parsing the text again and again we use an abstract data description. Task-number: QTCREATORBUG-17915 Change-Id: I0179fd13c48a581e91ee79bba9d42d501c26f19f Reviewed-by: Tobias Hunger <tobias.hunger@qt.io>