summaryrefslogtreecommitdiffstats
path: root/src/modules
Commit message (Collapse)AuthorAgeFilesLines
* QtPlatformSupport: A helper library for platform pluginsJørgen Lind2011-06-101-0/+14
| | | | | | | | QtPlatformSupport is a static library. Platform plugins are meant to link against this library to pull in dependencies such as fontengines and convenience functions for finding the right GL configs. The linker will only pull in the symbols used, so the size of the library doesn't really matter
* Build from scratch, use correct version number in Widgets.Friedemann Kleint2011-05-241-3/+3
| | | | | | | Order in src.pro needs to be correct since qtbase.pro forces ordered. Acked-by: Samuel Rødal <sroedal@trolltech.com>
* Merge remote branch 'origin/master' into refactorLars Knoll2011-05-1610-30/+30
|\ | | | | | | | | | | Conflicts: src/modules/qt_openvg.pri src/widgets/to_be_moved/qlinecontrol_p.h
| * Updated Qt and QtBase module version number to 5.0.0Eckhart Koppen2011-05-1311-33/+33
| | | | | | | | Updated version in qglobal.h as well as the module version itself
* | some build fixesLars Knoll2011-05-072-3/+3
| |
* | library splitLars Knoll2011-05-071-0/+14
| |
* | compile fixesLars Knoll2011-05-051-16/+0
|/
* Move private headers into versioned subdirectoryMarius Storm-Olsen2011-05-0211-57/+56
| | | | | | | This will allow us to expose private headers in a controlled manner, and ensure that they are not used by accident. This also means that we internally will have to enable the private headers for the modules we wish to use in the project.
* Introduced the QT.<module>.plugins variable to module profiles.axis2011-04-2711-0/+12
|
* Added QT.<module>.imports support to module profiles.axis2011-04-2710-0/+10
|
* Move uitools from QtTools to QtBaseLiang Qi2011-04-272-0/+27
|
* Make each module refer to its own bin/Marius Storm-Olsen2011-04-278-0/+8
| | | | | | | Since modules cannot rely on QtCore having a build directory, nor can they build the applications directly into $$[QT_INSTALL_BINS] each module needs their own bin/. Add this path to each module's pri file, so others can use their applications
* Extended module profiles.axis2011-04-279-0/+9
| | | | Each module now sets the QT_CONFIG variable itself.
* Move QtSvg into a separate repositoryLiang Qi2011-04-271-11/+0
|
* Add the private_includes path to the modules .pri fileLiang Qi2011-04-2710-0/+10
|
* Add the source path to the modules .pri fileMarius Storm-Olsen2011-04-2710-0/+10
|
* Remove the hardcode QT_CONFIG in those pri files.Liang Qi2011-04-2710-20/+0
|
* Add module specific pris, and make syncqt create fwd includesMarius Storm-Olsen2011-04-2710-0/+114
The module specific pris define the modules name version dependencies include paths lib paths additional CONFIGs and DEFINES They are located in the modules source directory, with fwd includes created in QtBase/mkspecs/modules build directory. The pris use QT_MODULE_INCLUDE_BASE QT_MODULE_LIB_BASE to specify the locations for includes and libs. These paths are normally based on QT_INSTALL_HEADERS QT_INSTALL_LIBS for installed modules, but overridden to the module's build directory by syncqt for the fwd included pris. The path of the pris must be specified in the sync.profile for syncqt to create the fwding pris in QtBase.