summaryrefslogtreecommitdiffstats
path: root/src/modules/qt_openvg.pri
Commit message (Collapse)AuthorAgeFilesLines
* compile fixesLars Knoll2011-05-051-16/+0
|
* Move private headers into versioned subdirectoryMarius Storm-Olsen2011-05-021-5/+5
| | | | | | | 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-271-0/+1
|
* Added QT.<module>.imports support to module profiles.axis2011-04-271-0/+1
|
* Make each module refer to its own bin/Marius Storm-Olsen2011-04-271-0/+1
| | | | | | | 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-271-0/+1
| | | | Each module now sets the QT_CONFIG variable itself.
* Add the private_includes path to the modules .pri fileLiang Qi2011-04-271-0/+1
|
* Add the source path to the modules .pri fileMarius Storm-Olsen2011-04-271-0/+1
|
* Remove the hardcode QT_CONFIG in those pri files.Liang Qi2011-04-271-2/+0
|
* Add module specific pris, and make syncqt create fwd includesMarius Storm-Olsen2011-04-271-0/+12
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.