Re: [Interest] qmake exclude modules

2013-09-19 Thread Phil Hannent
Good morning, On 18 September 2013 15:48, Thiago Macieira wrote: > On quarta-feira, 18 de setembro de 2013 13:46:28, Phil Hannent wrote: >> Ok, so I went digging into qt_lib_webkit.pri file and found: >> >> QT.webkit.depends = core gui network > > This one declares what your -I should be because

Re: [Interest] qmake exclude modules

2013-09-18 Thread Thiago Macieira
On quarta-feira, 18 de setembro de 2013 13:46:28, Phil Hannent wrote: > Ok, so I went digging into qt_lib_webkit.pri file and found: > > QT.webkit.depends = core gui network This one declares what your -I should be because you really can't write QtWebKit code without those includes. The classes

Re: [Interest] qmake exclude modules

2013-09-18 Thread Phil Hannent
On 18 September 2013 11:28, Mandeep Sandhu wrote: > Will webkit work w/o network? > > I think it depends on the network module. Same might be true for other > modules, but I'm not sure. > > HTH, > -mandeep > > > On Wed, Sep 18, 2013 at 3:19 PM, Phil Hannent wrote: >> >> Hi, >> >> I am trying to r

Re: [Interest] qmake exclude modules

2013-09-18 Thread Mandeep Sandhu
Will webkit work w/o network? I think it depends on the network module. Same might be true for other modules, but I'm not sure. HTH, -mandeep On Wed, Sep 18, 2013 at 3:19 PM, Phil Hannent wrote: > Hi, > > I am trying to remove some Qt modules that I don't need at the moment, > however qmake i

[Interest] qmake exclude modules

2013-09-18 Thread Phil Hannent
Hi, I am trying to remove some Qt modules that I don't need at the moment, however qmake isn't outputting a Makefile with the expected syntax. In my .pro file I have: QT += core gui webkit greaterThan(QT_MAJOR_VERSION, 4) { message("Using QT5") QT += widgets QT += webkitwidgets Q