aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qtsupport/qtbuildaspects.cpp
Commit message (Collapse)AuthorAgeFilesLines
* QtSupport: Use Utils::InfoLabel in qtbuildaspects.cppAlessandro Portale2020-01-091-22/+13
| | | | | | Task-number: QTCREATORBUG-23346 Change-Id: I810d6b00e171fe79c767aab03ecc8642c531d895 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
* ProjectExplorer: Use full class for TriState valuehjk2019-12-031-5/+5
| | | | | | | | | Allows more compact code on the user side in most cases and can hide the internal 'int-ness' from user code by wrapping Variant conversions in the TriState class itself. Change-Id: I4c91e0cd798ee988a0b9cb057749251a4efebaff Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
* ProjectExplorer: Let user provide default build propertiesChristian Kandeler2019-12-021-0/+4
| | | | | | Fixes: QTCREATORBUG-16458 Change-Id: I5f7a2450307a8d2e3392ca167411d1e00b58f05a Reviewed-by: hjk <hjk@qt.io>
* Build aspects: Fix some UI glitchesChristian Kandeler2019-11-281-6/+8
| | | | | | | Add missing colons, hide empty labels. Change-Id: Ic9753044d8dc842105d89225df45978220b0d8da Reviewed-by: hjk <hjk@qt.io>
* QtSupport: Introduce QtQuickCompilerAspectChristian Kandeler2019-11-251-1/+46
| | | | | | | ... and use it in the qbs build configuration Change-Id: I53ef4fb8c267e2b4e033c01604bc5b7770b57777 Reviewed-by: hjk <hjk@qt.io>
* ProjectExplorer: Add a base class for build aspectsChristian Kandeler2019-11-251-7/+7
| | | | | | | | | | ... and make use of it in the QmlDebuggingAspect. A build setting is conceptually not a boolean, but a tri-state, as we need to support force-switching a feature on and off as well as specifying that it is to be left at its default value. Change-Id: I15552614c5cf4f5187c026909d233c13e3487e81 Reviewed-by: hjk <hjk@qt.io>
* QtSupport: Add a QmlDebuggingAspectChristian Kandeler2019-11-251-0/+75
... and make use of it in the qbs build configuration. We cannot use it for qmake yet, because the build config there still has a custom, non-aspectified widget. Change-Id: Iacf902a2d9384d0074b10fdc98e082fa906fb6d6 Reviewed-by: hjk <hjk@qt.io>