aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qtsupport/qtbuildaspects.h
Commit message (Collapse)AuthorAgeFilesLines
* CMakePM: Fix handling of qml debuggingChristian Stenger2020-02-071-2/+1
| | | | | | | | | | | | | | Add a respective aspect to the build configuration for handling qml debugging from the build side similar to what we do with qmake and qbs. Qml debugging needs to get enabled on the build side before the settings on the run configuration page has an effect. Fixes: QTCREATORBUG-23541 Change-Id: I86267747601015760737d8b21978712896892a37 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
* QtSupport: Introduce QtQuickCompilerAspectChristian Kandeler2019-11-251-0/+16
| | | | | | | ... 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-1/+1
| | | | | | | | | | ... 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/+48
... 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>