summaryrefslogtreecommitdiffstats
path: root/.qmake.conf
Commit message (Collapse)AuthorAgeFilesLines
* Remove .qmake.conf from this repositoryJoerg Bornemann2021-09-211-9/+0
| | | | | | | | | | | | | | This file was necessary for the qmake build and the CI. The qmake build is history, and the CI does now read .cmake.conf (see QTQAINFRA-4392). In addition to being superfluous, the existence of .qmake.conf triggers QTBUG-76140 when building Qt examples with qmake. Removing the file alleviates the symptoms of this bug. Fixes: QTBUG-92271 Change-Id: If2a6c761eb6b074e348b99e6cb1edc1c45ecaceb Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
* Bump versionJani Heikkinen2021-09-141-1/+1
| | | | Change-Id: I2937b04dacad94e53340f5d6e7b152ba07b50232
* Bump versionJani Heikkinen2021-05-241-1/+1
| | | | Change-Id: I546c8bc940d1f49a755cc6ffe700d11f35bbb8d5
* Merge remote-tracking branch 'origin/wip/qt6' into devSimon Hausmann2019-10-041-1/+1
|\ | | | | | | | | | | | | Conflicts: .qmake.conf Change-Id: I6a25cd3cb2ae94cea140b37838e3fda70f22282b
| * Bump Qt version to Qt 6Alexandru Croitor2019-07-101-1/+1
| | | | | | | | | | | | Change-Id: I36feff0e7acc9eba7c444cc20e27a5bb190b38f5 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
* | Bump versionKari Oikarinen2019-08-271-1/+1
| | | | | | | | Change-Id: I9976344ed1b25aeb16ccef559f832961ce8c8bf9
* | Mark the module Q_FOREACH-free so it stays that wayMarc Mutz2019-07-141-0/+1
|/ | | | | Change-Id: I075b16a475e06d08328511f656cb2cd7efc683d6 Reviewed-by: Brett Stottlemyer <bstottle@ford.com>
* Eradicate Java-style iterators and mark the module free of themMarc Mutz2019-07-031-0/+2
| | | | | | | | | Java-style iterators are scheduled for deprecation, or at the very least banned from use in Qt code. Change-Id: I7a6e689e66ee4454658b9b52e7d444b7560a06fb Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
* Bump versionKari Oikarinen2019-02-251-1/+1
| | | | Change-Id: Ia8197ab42c53a7726491031102d3882be4ff5377
* Bump versionOswald Buddenhagen2018-10-111-1/+1
| | | | Change-Id: I3bf19d14a5ac80fc3c520e0d35164fc1b011574e
* Bump versionOswald Buddenhagen2018-02-191-1/+1
| | | | Change-Id: I3dc762dd055b99fae0fbc871f72fd4f31e3ede3e
* Bump versionFrederik Gladhorn2017-09-041-1/+1
| | | | Change-Id: I2c59466966ee4e0c2a559576257f5591d33e5542
* Bump versionOswald Buddenhagen2017-03-021-1/+1
| | | | Change-Id: Ie93a3b4c38b6878f811ccfad8523c95aab3903ec
* better naming for top_srcdirOswald Buddenhagen2017-01-311-2/+1
| | | | | | | | ... and drop top_builddir, as it's unused. Change-Id: I02d1c216b728a8ce8a07acf5d407388fa6d76838 Reviewed-by: Continuous Integration (KDAB) <build@kdab.com> Reviewed-by: Brett Stottlemyer <bstottle@ford.com>
* fix module versionOswald Buddenhagen2017-01-311-1/+3
| | | | | | Change-Id: I413ffc86f35119892401930f2627c812859a86ca Reviewed-by: Continuous Integration (KDAB) <build@kdab.com> Reviewed-by: Brett Stottlemyer <bstottle@ford.com>
* Bump module version to 5.6.2Brett Stottlemyer2016-11-201-1/+1
| | | | | | Change-Id: Iec2089a799bde83aa37d97a7bb139864b1f407ba Reviewed-by: Continuous Integration (KDAB) <build@kdab.com> Reviewed-by: Michael Brasser <michael.brasser@live.com>
* Bump module version to 5.6.1Brett Stottlemyer2016-10-101-1/+1
| | | | | | Change-Id: I8a7cf781d8e12f9b14084a0ebc485305da81655e Reviewed-by: Continuous Integration (KDAB) <build@kdab.com> Reviewed-by: Michael Brasser <michael.brasser@live.com>
* QLALR version of repcBrett Stottlemyer2015-10-071-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change moves the repc parser from hand-coded to a QLALR parser. It uses a special* lexer/parser header file that combines regexes** with QLALR to make simplified grammars. That is, regular expressions are the building blocks of the grammar, not more basic tokens. It doesn't need lex or a compatible lexer generator. It should support full conversion to a complete (non-regex based) language if necessary, but incrementally. The goal is to make repc easier to extend by moving to a grammar. *qregexparser.h **As of Qt 5.5, bootstrap (which is required for repc, since it is a host tool) includes QRegExp, but not QRegularExpressions. So this version of the parser uses QRegularExpressions in non-bootstrap mode, and includes a bunch of #defines to work with QRegExp in bootstrap mode. THIS IS FRAGILE. The regex syntax is different for each library. Ideally QRE will move to bootstrap, and these hacks can be removed. Change-Id: I86f4e764fd22702771d6b00358a0bf2da72658c0 Reviewed-by: Continuous Integration (KDAB) <build@kdab.com> Reviewed-by: BogDan Vatra <bogdan@kdab.com>
* Bump module version to 5.5.0Rafael Roquetto2015-07-231-1/+1
| | | | | | Change-Id: Icc72e629e6e6f9aa0e0a61d1a4ea25942039cd13 Reviewed-by: Continuous Integration (KDAB) <build@kdab.com> Reviewed-by: Brett Stottlemyer <bstottle@ford.com>
* Bump module version to 5.4.1Rafael Roquetto2015-03-181-1/+1
| | | | | | Change-Id: I9f07695dac8db687355a08ca5e670982630cf32c Reviewed-by: Volker Krause <volker.krause@kdab.com> Reviewed-by: Björn Breitmeyer <bjoern.breitmeyer@kdab.com>
* Say hello to QtRemoteObjectsBrett Stottlemyer2014-10-161-0/+3
This is a module that allows you to create copies/replicas of your QObjects in other processes, without having to write a bunch of IPC code. Change-Id: I4a62f120eca34c9f50089b7d9d09dcfcad14476c Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com> Reviewed-by: Björn Breitmeyer <bjoern.breitmeyer@kdab.com> Reviewed-by: Brett Stottlemyer <bstottle@ford.com>