Re: [Interest] QML lint

2017-01-24 Thread Станислав Сальников
Thanks for the answer! Is there any way to configure qmllint? We have some conventions in my team and some of default qmllint`s warnings are okay for us. And the main question is about codestyle. Is there any way to check indentations, spaces, semicolons, variable names etc? вт, 24 янв. 2017 г. в

Re: [Interest] qml cache vs compiler

2017-01-24 Thread Thiago Macieira
Em terça-feira, 24 de janeiro de 2017, às 23:04:08 PST, Sylvain Pointeau escreveu: > > > Is it precompiled in 5.8 or is it kind of jit compilation? > > > > It's a cache of the JIT > > > How does it improve the startup time? is it persistant between execution? Yes, it's persistent between execu

Re: [Interest] qml cache vs compiler

2017-01-24 Thread Sylvain Pointeau
> > > > Is it precompiled in 5.8 or is it kind of jit compilation? > > It's a cache of the JIT > > How does it improve the startup time? is it persistant between execution? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mai

Re: [Interest] qml cache vs compiler

2017-01-24 Thread Thiago Macieira
Em terça-feira, 24 de janeiro de 2017, às 21:14:50 PST, Sylvain Pointeau escreveu: > Hello, > > I dont't understand very well the Qml cache in 5.8 versus the Qml compiler > in the commercial version > > Is it precompiled in 5.8 or is it kind of jit compilation? It's a cache of the JIT. -- Thi

[Interest] qml cache vs compiler

2017-01-24 Thread Sylvain Pointeau
Hello, I dont't understand very well the Qml cache in 5.8 versus the Qml compiler in the commercial version Is it precompiled in 5.8 or is it kind of jit compilation? Best regards, Sylvain ___ Interest mailing list Interest@qt-project.org http://lists.

Re: [Interest] Qt, openssl and redistribution (of binary packages)

2017-01-24 Thread Thiago Macieira
Em segunda-feira, 23 de janeiro de 2017, às 08:01:02 PST, Constantin Makshin escreveu: > Qt can be redistributed under the terms of LGPL which allows linking > against everything so there are no license-related issues in linking Qt > and OpenSSL. Please take OpenSSL's own terms into account. It h

Re: [Interest] Qt, openssl and redistribution (of binary packages)

2017-01-24 Thread Thiago Macieira
Em segunda-feira, 23 de janeiro de 2017, às 11:12:07 PST, René J. V. Bertin escreveu: > The MacPorts packaging lists 3 licenses governing Qt5, the LGPL v2 and v3, > but also GPL3. Are you saying we shouldn't be listing the GPL3 license and > that we can do so without "risk"? Qt changed licences w

Re: [Interest] QML lint

2017-01-24 Thread Jérôme Godbout
There's qmllint binary when you compile Qt into the bin folder. You can iterate on every .qml or .js file and pass them to the qmllint binary within your shell script. ex: /my/path/to/qt/bin/qmllint my/path/to/file/myFile.qml See https://github.com/git/git/blob/master/templates/hooks--pre-commit.

Re: [Interest] Qt 5.8.0 RC build under windows

2017-01-24 Thread Prav
Hello, Maurice. > However, when compiling Qt there are config tests verifying your > environment is compatible against it. If not (for instance you do > not have the correct SDK), those features will be turned off. That seems very interesting features I never heard of. Can you explain little bit

[Interest] QML lint

2017-01-24 Thread Станислав Сальников
Hey guys! I want to make a git prepush hook to check qml codestyle. How do you solve this problem? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Qt, openssl and redistribution (of binary packages)

2017-01-24 Thread René J . V . Bertin
Constantin Makshin wrote: > I'm not sure omitting licensing information is a good idea. Instead you > may specify that while Qt5 itself can be redistributed under the terms > of either GPL3 or LGPL{2|3}, MacPorts package in particular is limited > to LGPL (due to OpenSSL). But even that is not ne

Re: [Interest] compiling missing sql driver plugins

2017-01-24 Thread Oswald Buddenhagen
On Mon, Jan 23, 2017 at 04:09:15PM -0800, Thiago Macieira wrote: > On terça-feira, 24 de janeiro de 2017 10:54:53 PST Hamish Moffatt wrote: > > The Qt sources include an SQL driver plugin for Interbase/Firebird which > > is not included in the binary distributions. Is there a way to compile > > it

Re: [Interest] Can't run Qt application under UWP kit

2017-01-24 Thread Alexander Dyagilev
https://bugreports.qt.io/browse/QTCREATORBUG-17622 On 1/24/2017 12:22 PM, Maurice Kalinowski wrote: How does it break? What is broken? Could you please create an item on bugreport, so that we can properly handle this. BR, Maurice *From:*Alexander Dyagilev [mailto:alervd...@gmail.com] *Se

Re: [Interest] Can't run Qt application under UWP kit

2017-01-24 Thread Maurice Kalinowski
How does it break? What is broken? Could you please create an item on bugreport, so that we can properly handle this. BR, Maurice From: Alexander Dyagilev [mailto:alervd...@gmail.com] Sent: Tuesday, January 24, 2017 10:15 AM To: Maurice Kalinowski ; interest@qt-project.org Subject: Re: [Intere

Re: [Interest] Can't run Qt application under UWP kit

2017-01-24 Thread Alexander Dyagilev
I found the reason - it's DESTDIR = ../bin in my pro files. Using DESTDIR breaks UWP configuration. Is it a bug? What can be done here as I would like to use DESTDIR? On 1/24/2017 11:54 AM, Maurice Kalinowski wrote: > > Does it work for example applications? Trying that would at show whet

Re: [Interest] Can't run Qt application under UWP kit

2017-01-24 Thread Alexander Dyagilev
It also gives me a strange warning when I launch qmake on this empty project: :-1: warning: winrt_manifest_install.path is not defined: install target not created On 1/24/2017 11:53 AM, Alexander Dyagilev wrote: I've removed all the code from my project. Left this: #include intmain(inta

Re: [Interest] Can't run Qt application under UWP kit

2017-01-24 Thread Alexander Dyagilev
As I said in the prev. mail - it's nothing to do with dlls... On 1/24/2017 11:54 AM, Maurice Kalinowski wrote: > > Does it work for example applications? Trying that would at show whether it’s the tools or something in your project. > Yes. Gallery example runs fine. Good to know. > > Did

Re: [Interest] Can't run Qt application under UWP kit

2017-01-24 Thread Maurice Kalinowski
> > Does it work for example applications? Trying that would at show whether > > it’s the tools or something in your project. > Yes. Gallery example runs fine. Good to know. > > Did you also rebuild all your DLLs for UWP and are all your DLLs UWP > > compatible? > Yes, of course. All these my D

Re: [Interest] Can't run Qt application under UWP kit

2017-01-24 Thread Alexander Dyagilev
I've removed all the code from my project. Left this: #include intmain(intargc,char*argv[]) { QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling); QGuiApplicationapp(argc,argv); return0; } Still getting the same error! Of course, all those 3 DLLs are not used anymore so the proble

Re: [Interest] Can't run Qt application under UWP kit

2017-01-24 Thread Alexander Dyagilev
On 1/24/2017 10:53 AM, Maurice Kalinowski wrote: Does it work for example applications? Trying that would at show whether it’s the tools or something in your project. Yes. Gallery example runs fine. Did you also rebuild all your DLLs for UWP and are all your DLLs UWP compatible? Yes,