Re: [cmake-developers] Optional dependencies in target INTERFACE

2014-06-30 Thread Philipp Moeller
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

Re: [cmake-developers] Broken progress output with make -jXX (aka parallel make)

2014-06-30 Thread Brad King
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

Re: [cmake-developers] [PATCH 1/3] Ninja: Consider only custom commands deps as side-effects (#14972)

2014-06-30 Thread Brad King
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

Re: [cmake-developers] Optional dependencies in target INTERFACE

2014-06-30 Thread Daniel Pfeifer
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

[cmake-developers] Optional dependencies in target INTERFACE

2014-06-30 Thread 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 QT_WIDGETS_LIB. That means that the QSqlRelationalDelegat

Re: [cmake-developers] IMPORTED targets for some Find modules

2014-06-30 Thread Stephen Kelly
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