summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Start on rvct support.con2009-08-0512-23/+241
| | | | | | It works, except that the code model doesn't get the rvct include directories and defines yet. And you need to have everything for rvct set up in your environment.
* If no mwc path is set explicitly, still don't destroy working environment.con2009-08-051-20/+34
| | | | | So now we use the values of the system environment as a backup for build environment and system includes.
* fix alt-tab navigation in the original splitmae2009-08-051-0/+2
|
* fix occasionally broken link to the modified state of the editormae2009-08-052-6/+12
|
* Searching in files takes open editors into account now.con2009-08-056-20/+100
| | | | Task-number: 258468
* Some dependency declaration cleanup.con2009-08-051-4/+2
|
* Fixes: Link error on Windows, this slot should not be thereAndy Shaw2009-08-051-1/+0
|
* Fixes: Compile on WindowsAndy Shaw2009-08-051-1/+1
|
* Fixes compilationdt2009-08-052-4/+4
|
* Disable the browse button if the shadow build checkbox is disabled.dt2009-08-052-2/+7
|
* fix compile the proper wayOswald Buddenhagen2009-08-051-2/+3
| | | | | older gcc does not automatically make nested classes of a friend class friends as well.
* don't hang in .qmake.cache search when build dir does not existOswald Buddenhagen2009-08-051-2/+1
| | | | QDir::cdUp() is strange ...
* Change the apppereanve slightly for environment widgets.dt2009-08-052-51/+30
|
* Fix wrong importing of old settings overwritting a release configurationdt2009-08-051-1/+1
|
* Fixed build problem by removing the private.Erik Verbruggen2009-08-051-1/+1
|
* The parser needs to a valid AST when the parsing method returns `true'.Roberto Raggi2009-08-051-6/+3
|
* Using QDir::toNativeSeparatorsAlessandro Portale2009-08-051-2/+2
|
* remove seemingly superfluous path normalizationsOswald Buddenhagen2009-08-041-6/+4
| | | | | they were added to facilitate .prf exclusion from the project tree, but that should be handled differently already.
* don't report prf inclusions to derived classesOswald Buddenhagen2009-08-041-1/+8
|
* move include recursion check to evaluateFile() where it belongsOswald Buddenhagen2009-08-041-14/+16
|
* move qmake property hash to option objectOswald Buddenhagen2009-08-043-10/+4
| | | | | that way they are auto-inherited by nested parsers, and it's the right thing to do anyway.
* complain about querying non-existing propertiesOswald Buddenhagen2009-08-041-3/+5
| | | | ... except where it is expected
* rely on the properties passed into the evaluatorOswald Buddenhagen2009-08-041-29/+1
| | | | | fallbacks to values from the qt we were compiled/linked against really make no sense.
* inject QT_VERSION into the evaluatorOswald Buddenhagen2009-08-042-1/+1
| | | | almost too simple to be right, given the TODO ...
* improved high-level qmake compatOswald Buddenhagen2009-08-043-62/+190
| | | | | | | | | | | | - parse .qmake.cache, remove workaround for not doing it - look for the mkspecs in all the places qmake would do - use the passed in properties instead of QLibraryInfo to find the qt data dir - fix loading of generic features from within os-specific ones with the same name - add multiple inclusion guard for features (including what seems to be a bug in qmake ...) - misc cleanups and beautifications
* look only for mkspec features for the current target platformOswald Buddenhagen2009-08-041-10/+25
|
* micro-optimizationsOswald Buddenhagen2009-08-041-11/+11
|
* fixEnvVariables => expandEnvVars overloadOswald Buddenhagen2009-08-041-11/+10
|
* set the current work dir even for pri filesOswald Buddenhagen2009-08-041-12/+11
| | | | | | qmake does so. of course, in the longer run we need to get rid of this at all, but this would require quite some reviewing of side effects.
* make the qmake option object a proper memberOswald Buddenhagen2009-08-044-91/+98
| | | | | | | | to be able to share the option object among evaluators, it is passed by pointer. only field_sep stays static and becomes a string - that's effectively just a cache to avoid repeated construction.
* make Option a nested class of ProFileEvaluatorOswald Buddenhagen2009-08-044-166/+92
| | | | it's still static at that point, though.
* shuffle code aroundOswald Buddenhagen2009-08-042-165/+169
| | | | non-inline implementations in a header? feh!
* inline trivial functionsOswald Buddenhagen2009-08-042-15/+5
|
* remove remainders of a fairly useless set of assertsOswald Buddenhagen2009-08-042-7/+0
| | | | | (the rest seems to have evaporated over time or never existed in the first place)
* don't push top level pro file twice on stackOswald Buddenhagen2009-08-041-6/+6
|
* get rid of m_origfileOswald Buddenhagen2009-08-041-5/+2
| | | | it's redundand
* initialize TARGET properly instead of fixing it laterOswald Buddenhagen2009-08-041-3/+5
| | | | ... which is also what qmake does
* refactor pre, post and CONFIG feature inclusionOswald Buddenhagen2009-08-041-32/+26
| | | | actually use evaluateFeatureFile() instead of hand-crafting stuff
* plug memory leakOswald Buddenhagen2009-08-041-7/+7
| | | | | it's a bad idea to conditionalize a cleanup on a completely unrelated variable.
* Fix adding of endlines to application output.con2009-08-041-4/+7
|
* Debug output from TRK might have windows style line endingscon2009-08-041-2/+2
|
* Handle application output that comes over TRK.con2009-08-042-0/+7
|
* Enabled edit actions for application output windowRobert Loehning2009-08-042-17/+79
| | | | Reviewed-by: dt
* Honor QTCREATOR_NO_CODE_INDEXER, supress include scanning.Daniel Molkentin2009-08-041-9/+11
|
* Merged ObjCMethodDefinitionAST into ObjCMethodDeclarationAST.Erik Verbruggen2009-08-049-89/+12
|
* Nicer output.con2009-08-041-2/+2
|
* Superfluous new lines in application output.con2009-08-041-7/+19
| | | | Fix the use of appendPlainText for automatic scrolling.
* Show the user the device name in application output.con2009-08-045-3/+16
| | | | Reviewed-by: Daniel Molkentin
* Made `Rename Symbol under Cursor' a command/action.Roberto Raggi2009-08-045-14/+22
|
* Stop scanning string literals when the current character is a newline.Roberto Raggi2009-08-041-1/+4
|