Re: [Interest] qmake option to find qt library location

2014-05-05 Thread Sandeep
As Thiago already pointed out - just run: Thanks, noted. But I have some weird issue with interest mailing list. I usually post to both development and interest in case I am confused which mailing group does my question fall under, so what happens all the time is the question posted on

[Interest] Qt 5.2.1 and Windows Embedded Compact 2013

2014-05-05 Thread Kuhn, Jochen
Hello, I have a Windows Embedded Compact 2013 system and I try to run a Qt 5.2.1 project on it. But I can't find any up-to-date descriptions how to setup and build a Qt- project for this system. I'm working with Visual Studio 2012 and the Qt-plugin. Is it even possible? Thanks.

[Interest] Handle files with the same name by automoc

2014-05-05 Thread CanisMajorWuff
Hi, There is the following source tree: *-source *subsource *Source1.hpp *Source1.hpp Both files, ./Source1.hpp and ./subsource/Source1.hpp, must be handled by moc. When using automoc it puts output moc files to the same directory with the same name, since

Re: [Interest] Qt 5.2.1 and Windows Embedded Compact 2013

2014-05-05 Thread Knight Andrew
Hi Jochen, From: interest-bounces+andrew.knight=digia@qt-project.org [interest-bounces+andrew.knight=digia@qt-project.org] on behalf of Kuhn, Jochen [jochen.k...@ika.de] Sent: Thursday, April 17, 2014 4:33 PM To: interest@qt-project.org Subject: [Interest] Qt 5.2.1 and Windows

[Interest] FW: TDD in QML

2014-05-05 Thread Luca Bonifacio
Hi guys Is there somebody which has some experiences by doing TDD with QML? How do you mock QML components? -Original Message- From: Alan Alpert [mailto:4163654...@gmail.com] Sent: Samstag, 3. Mai 2014 01:30 To: Luca Bonifacio Subject: Re: [Interest] Project structure for

Re: [Interest] qmake option to find qt library location

2014-05-05 Thread Thiago Macieira
Em qui 10 abr 2014, às 14:53:44, Sandeep escreveu: Thanks, noted. But I have some weird issue with interest mailing list. I usually post to both development and interest in case I am confused which mailing group does my question fall under Please stop doing that. If you have a question about

Re: [Interest] Debugging tip for QNetworkReply

2014-05-05 Thread Mandeep Sandhu
So there's a sizable difference between the file that works (600KB) and the one that doesn't (55MB). * Could it be a memory issue on your system? Have you tested higher sizes after which it starts failing? * What does reply-error() return when this problem occurs (you had mentioned the error

Re: [Interest] FW: TDD in QML

2014-05-05 Thread Ben Lau
In fact, it is quite troublesome to do TDD over QML. Although Qt has provided the Qt Quick Test module, it don't support dummydata like Qt Quick Designer. I have tried to run tst_xxx.qml via the C++ test framework but it can not use the TestCase object. It depends on QTestRootObject which is a

Re: [Interest] Handle files with the same name by automoc

2014-05-05 Thread Till Oliver Knoll
Am 26.04.2014 um 18:30 schrieb CanisMajorWuff canismajorw...@gmail.com: ... Any solutions? Rename the sources? ;) Cheers, Oliver ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Handle files with the same name by automoc

2014-05-05 Thread Scott Aron Bloom
Use separate libraries for each directory This isn't an automoc issue, it's a multiple files with the same name in the same library issue If they weren't header files, but rather straight c++ files, you wouldn't be asking this... Scott -Original Message- From:

Re: [Interest] Project structure for multi-platform mobile devices

2014-05-05 Thread Luca Bonifacio
Hi Tim I have some news for you. Last week I found some time to spend into my multiplatform (Android and iOS) project and now everything works perfectly! I can run my application on iOS, Android and Desktop (Mac, Linux and Windows). Best regards, Luca From: Tim O' Callaghan

Re: [Interest] Handle files with the same name by automoc

2014-05-05 Thread Alan Ezust
I know that a lot of QtTestLib examples use this hack where they #include filename.moc at the bottom of their filename.cpp files to fool moc into processing them in addition to the other h files. ___ Interest mailing list Interest@qt-project.org

Re: [Interest] Handle files with the same name by automoc

2014-05-05 Thread Thiago Macieira
Em seg 05 maio 2014, às 14:13:57, Scott Aron Bloom escreveu: Use separate libraries for each directory This isn't an automoc issue, it's a multiple files with the same name in the same library issue If they weren't header files, but rather straight c++ files, you wouldn't be asking

Re: [Interest] Debugging tip for QNetworkReply

2014-05-05 Thread Jason Kretzer
Turns out, a bug on the portal. However, I would not have seen that had someone not mentioned looking at the logs for portal. It was a bug where under certain circumstances a redirect is issued(302). Thank you every one. -Jason //// Jason R. Kretzer