Re: [Interest] Excluding examples from make in dev dir

2017-02-24 Thread Patrick Stinson
Excellent scholarship, Giuseppe. A much needed quality in the world of software. > On Feb 24, 2017, at 3:21 PM, Giuseppe D'Angelo > wrote: > > Il 24/02/2017 23:41, Patrick Stinson ha scritto: >> Right, I thought that this would take care of this as well, but it turns out >> that it doesn’t res

Re: [Interest] Excluding examples from make in dev dir

2017-02-24 Thread Giuseppe D'Angelo
Il 24/02/2017 23:41, Patrick Stinson ha scritto: > Right, I thought that this would take care of this as well, but it turns out > that it doesn’t restrict examples. Or, at least it doesn’t restrict examples > for cleaning. Smells like a philosophical issue / arbitrary decision. -nomake examples

Re: [Interest] Excluding examples from make in dev dir

2017-02-24 Thread Giuseppe D'Angelo
Il 24/02/2017 22:58, Patrick Stinson ha scritto: > Is there a way to exclude examples for “make” and “make clean” inside a qt > module, e.g. qtbase? Looking at qtbase.pro took me ended up in my getting > lost in a rabbit hole. Pass -nomake examples to configure. Hope this helps, -- Giuseppe D'

[Interest] Excluding examples from make in dev dir

2017-02-24 Thread Patrick Stinson
Hello! Is there a way to exclude examples for “make” and “make clean” inside a qt module, e.g. qtbase? Looking at qtbase.pro took me ended up in my getting lost in a rabbit hole. Thanks! -P ___ Interest mailing list Interest@qt-project.org http://lis

[Interest] Using WebView from WebKit framework with QtQuick on macOS

2017-02-24 Thread Prashanth Udupa
Hi All, I am building a eReader app on Mac that requires me to use a specific third-party library for rendering EPUB3 content. This third-party library requires me to pass to it, an instance of WebKit framework's WebView component. The rest of the application is built using QML, so I will need

Re: [Interest] Support for Visual Studio 2017

2017-02-24 Thread Tom Isaacson
VS2017 is ABI-compatible with VS2015: http://stackoverflow.com/questions/40854917/is-visual-c-2017-binary-compatible-with-vc-2015 There's a comment here that suggests VS2017 uses the same C++ standard library implementation (search for "msvcp140.dll"): https://news.ycombinator.com/item?id=1296790

Re: [Interest] How to really delete a QGraphicsItem from QGraphicsScene

2017-02-24 Thread Francis Herne
On Fri, 24 Feb 2017 19:12:18 +0800 jack ma wrote: > Hi, > > is it correct to use “delete” directly delete the item ? > > or I should first call removeItem() and then call "delete item" to > remove it? > > How are these two ways affect the bsp tree? > > Thanks, > jack From the docs for ~QGra

Re: [Interest] Support for Visual Studio 2017

2017-02-24 Thread Constantin Makshin
Still looks somewhat risky to me. Unless VS2017 uses C++ standard library implementation from VS2015's "msvcp140.dll", of course. On 02/24/2017 12:44 PM, Tom Isaacson wrote: > I had the prebuilt VS2015 libraries downloaded and installed and I was able > to rebuild and run our app in VS2017. I did

[Interest] How to really delete a QGraphicsItem from QGraphicsScene

2017-02-24 Thread jack ma
Hi, is it correct to use “delete” directly delete the item ? or I should first call removeItem() and then call "delete item" to remove it? How are these two ways affect the bsp tree? Thanks, jack ___ Interest mailing list Interest@qt-project.org http

Re: [Interest] Support for Visual Studio 2017

2017-02-24 Thread Tom Isaacson
I had the prebuilt VS2015 libraries downloaded and installed and I was able to rebuild and run our app in VS2017. I didn't have to rebuild Qt myself. Tom Isaacson -Original Message- From: Interest [mailto:interest-bounces+tom.isaacson=navico@qt-project.org] On Behalf Of Harri Porte