Stephen Kelly writes:
> Hello,
>
> QtSQL provides abstracted access to database data. It does not depend on
> QtGui or QtWidgets.
>
> It also provides the header-only qsqlrelationaldelegate.h. The contents of
> that header depend on QtWidgets, and are wrapped in an ifdef QT_WIDGETS_LIB.
> That
On 06/27/2014 04:32 PM, Adam Strzelecki wrote:
> As you probably notice percentage is decoupled by rest of status line.
This was reported here:
http://www.cmake.org/Bug/view.php?id=12991
but it hasn't bothered anyone enough to fix it.
-Brad
--
Powered by www.kitware.com
Please keep messages
On 06/27/2014 04:13 PM, Adam Strzelecki wrote:
> Previously all explicit dependencies inside build folder were considered as
> possible build command side-effects and phony rules were produced for them in
> case they don't exist yet starting build. This however incorrect since regular
> compile inp
2014-06-30 10:18 GMT+02:00 Stephen Kelly :
>
> Hello,
>
> QtSQL provides abstracted access to database data. It does not depend on
> QtGui or QtWidgets.
>
> It also provides the header-only qsqlrelationaldelegate.h. The contents of
> that header depend on QtWidgets, and are wrapped in an ifdef
> Q
Hello,
QtSQL provides abstracted access to database data. It does not depend on
QtGui or QtWidgets.
It also provides the header-only qsqlrelationaldelegate.h. The contents of
that header depend on QtWidgets, and are wrapped in an ifdef QT_WIDGETS_LIB.
That means that the QSqlRelationalDelegat
Stephen Kelly wrote:
>> If you build a library using foo.cpp it will contain the glVertex2i
>> symbol even though its headers wont include it. Likewise a consumer of
>> that library does not need to have the headers,
>
>> but will need to link against a library containing the symbol.
>
> Ah, I g