[Interest] What is the right way to make a cpu monitor like animation in QML?

2013-06-02 Thread Mark
Hi, I want to make a CPU monitor like component. At first i was considering using QML Canvas because it has everything i need to make a CPU monitor like component. Those requirements are: - Draw a line - Everything till that line should be drawn in a semi transparent color For a static image

Re: [Interest] What is the right way to make a cpu monitor like animation in QML?

2013-06-02 Thread Mark
On Sun, Jun 2, 2013 at 11:07 PM, Mark mark...@gmail.com wrote: Hi, I want to make a CPU monitor like component. At first i was considering using QML Canvas because it has everything i need to make a CPU monitor like component. Those requirements are: - Draw a line - Everything till that

[Interest] Target machine not set in projects generated by qmake for Visual Studio

2013-06-02 Thread Tony Rietwyk
Hi Everybody! When I build my Qt 4.8.4 projects on Windows 7, I always get this warning: LINK : warning LNK4068: /MACHINE not specified; defaulting to X86 and later: project_name - 0 error(s), 1 warning(s) which sucks. I have tried changing

Re: [Interest] Target machine not set in projects generated by qmake for Visual Studio

2013-06-02 Thread Thiago Macieira
On segunda-feira, 3 de junho de 2013 14.44.37, Tony Rietwyk wrote: which sucks. I have tried changing mkspecs/win32-msvc2008/qmake.conf to include /MACHINE:X86 in QMAKE_LFLAGS, which works well for the moment. It will need changing once we go to X64 builds. How should I specify this in

Re: [Interest] Target machine not set in projects generated by qmake for Visual Studio

2013-06-02 Thread Scott Aron Bloom
You can explicitly set the MACHINE switch using a QMAKE flag.. Its been a while, but there is a debug and release QMAKE_***_ LINK flag that you can set it on. I have moved to cmake, but I had filed this bug years ago, it never got resolved last time I checked. Scott -Original