aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/config/configcommand.h
Commit message (Collapse)AuthorAgeFilesLines
* Change style of #includes of Qt headersJake Petroules2017-01-041-2/+2
| | | | | | | | | | | | | | | | By using q<lowercase>.h headers, we become more bootstrap-friendly, as no full syncqt is required any more. In the same go, prefix all includes with the module name. This helps grep-based analysis of which parts of Qt are used and where. It's also consistent with Qt's public headers (where syncqt enforces the style). Testdata and examples are excluded from the change, as they are not relevant for bootstrapping. Change-Id: I9539b1d795e87fca6e5fc6c91acbb775b79208d9 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
* Update license headersIikka Eklund2016-08-291-14/+23
| | | | | | | | | | Patch-set 1 includes *.h Every source file needs to have up-to-date license headers in order to pass ci. Change-Id: Ib6cf3ac47dfba6dff262fded44bc952aef3bda8b Reviewed-by: Jake Petroules <jake.petroules@qt.io>
* Replace 'the Qt build suite' with 'Qbs' in copyright notices.Jake Petroules2016-06-061-1/+1
| | | | | | Change-Id: I885d94bb14b325dc36767a840ebdb0be1fb59dd2 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
* update license headersJoerg Bornemann2015-03-021-2/+2
| | | | | Change-Id: I36d825db3a5ef32c162c3063aab1e8a1f2696f4f Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
* Update LicenseEike Ziller2015-01-261-6/+6
| | | | | Change-Id: I092fca9f950de1ba38826c33b155f86feae2770b Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
* License update.Eike Ziller2014-10-161-7/+8
| | | | | | | Add LGPLv3 option. Change-Id: I8a63ad5e46a2701032b2103f791df4dec5b707e8 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
* qbs-config: Get rid of the "CfgGet" command type.Christian Kandeler2014-07-101-1/+1
| | | | | | | | This one is silly. It has the same functionality as "CfgList", but takes a different code path and can format values differently. Change-Id: If77023bc9960ea545e3cfdc11b763e0f32a98409 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
* Incremented year in copyright infoRobert Loehning2014-01-081-1/+1
| | | | | | Change-Id: Ib7f9a00bb891fa39c5bc1f891ddbfba1e4d23227 Reviewed-by: Jake Petroules <jake.petroules@petroules.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
* clean up INCLUDEPATHJoerg Bornemann2013-03-151-1/+1
| | | | | | | Only add src to the INCLUDEPATH where it is needed. Change-Id: I1777dcf98837b1d74b0034ba70e98dc711107328 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
* Use class instead of struct whereever possibleTobias Hunger2013-01-101-1/+2
| | | | | | | | | E.g. clang complains about struct/class mismaches, so try to use class as consistently as possible to avoid opportunities for mistakes. Change-Id: I81021336f2dc75a2f5b2b1105491aa50f8ea851d Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
* update copyright yearJoerg Bornemann2013-01-091-1/+1
| | | | | Change-Id: Ic2962e57ede037b910d7e77b01b0163f0a22cb7d Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
* Remove "local configuration" infrastructure.Christian Kandeler2012-12-121-3/+1
| | | | | | | | The original "per source project" approach made no sense, and the search for a different use case was unsuccessful. Change-Id: Icaf5935202450c5492f69afb1ffd724dfd423134 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
* Move "qbs config" functionality into dedicated tool.Christian Kandeler2012-10-121-0/+51
The way it is currently interwoven with unrelated code is awkward and makes things hard to maintain. Some changes done along the way: - "--global" is now the default. - Bug QBS-95 is fixed. - The issue that dots are not properly translated to slashes when requesting the value of a single variable is also fixed. Change-Id: I95cf18e39226e7ac6ceb2dd7ed1bf47929bc8e52 Task-number: QBS-95 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>