[Qt-creator] snapshot doesn't start

2010-09-24 Thread Gena Cid
Hello! Today' snapshot (24 Sep, ...) and version, compiled from git (f64cf427f2a0cd37789b9feb782cd1b4e26563ec) with qt 4.7 (da6493ff277892117a802daa56b4846ae340d4bc) don't start. git version message: $./bin/qtcreator (14743) KIconCache::Private::themeDirsChanged: Theme directory has been modifi

Re: [Qt-creator] Available variables in build steps?

2010-09-24 Thread Bryce Schober
You guys do realize that adding more functionality to the build and run settings makes it more desirable to share them, right? I really don't mean to pick the scab that is the .user file, but some of your development efforts seem to be in conflict. The more generic and usable the build & user setti

Re: [Qt-creator] Available variables in build steps?

2010-09-24 Thread Tobias Hunger
On 24.09.2010 13:46, ext anshul mehta wrote: > Hi Tobias > > Thanks a lot ! Even I'm really looking forward to this functionality of > "ability to use environmental variables while specifying executable to > be run". > Please notify us once this is done. So that we can download it from the > master

Re: [Qt-creator] Breakpoints in files with the same name

2010-09-24 Thread Leandro T. C. Melo
On 9/24/2010 11:28 AM, ext Robert Caldecott wrote: > I am working on a large project that contains some .cpp files with the > same name (in separate sub folders obviously). The issue I have is > setting a breakpoint in one of those files confuses Qt Creator and > stops at the same line number i

Re: [Qt-creator] Available variables in build steps?

2010-09-24 Thread anshul mehta
Hi Tobias Thanks a lot ! Even I'm really looking forward to this functionality of "ability to use environmental variables while specifying executable to be run". Please notify us once this is done. So that we can download it from the master snapshots we get after every 1 or two weeks.. Anshul On

Re: [Qt-creator] Available variables in build steps?

2010-09-24 Thread Tobias Hunger
On 12.04.2010 16:01, ext Stephen Chu wrote: > Hi > > Is there a list of available variables that we can use in the custom > build steps? I see the $BUILDDIR in the working directory. Is there > anything else like the built app filename, etc. that can be used in the > command field? Hi Stephen! I

[Qt-creator] Breakpoints in files with the same name

2010-09-24 Thread Robert Caldecott
I am working on a large project that contains some .cpp files with the same name (in separate sub folders obviously). The issue I have is setting a breakpoint in one of those files confuses Qt Creator and stops at the same line number in the wrong file. For example, if my project contains \subfol

Re: [Qt-creator] plain C++ project

2010-09-24 Thread André Pönitz
On Friday 24 September 2010 09:26:21 ext Matthias Pospiech wrote: > > Am 24.09.2010 08:13, schrieb André Pönitz: > >> However I experienced that without Qt debugging of a plain c++ project > >> failed. The easy solution was to readd QtCore again. > > That sounds like you were (not...) using the

Re: [Qt-creator] linking libs with shadow builds fails

2010-09-24 Thread Christian Kandeler
On 09/24/2010 09:27 AM, ext Matthias Pospiech wrote: > What is OUT_PWD ? what does it contain. > Are therer other similar predefined variables? Instead of pasting the whole documentation for you, I will provide a link: http://doc.qt.nokia.com/4.7/qmake-variable-reference.html#out-pwd Christian

Re: [Qt-creator] linking libs with shadow builds fails

2010-09-24 Thread Matthias Pospiech
Am 24.09.2010 09:18, schrieb Christian Kandeler: > >> I am using subdirs. In src.pro I am using this code to link: >> LIBS += -L../lib/fftw/32/ -lfftw3-3 > LIBS += -L $$OUT_PWD/../lib/fftw/32/ -lfftw3-3 What is OUT_PWD ? what does it contain. Are therer other similar predefined variables? Matthi

Re: [Qt-creator] plain C++ project

2010-09-24 Thread Matthias Pospiech
Am 24.09.2010 08:13, schrieb André Pönitz: >> However I experienced that without Qt debugging of a plain c++ project >> failed. The easy solution was to readd QtCore again. > That sounds like you were (not...) using the compiled debugging helpers, > i.e. you are either on Mac, or more likely usin

Re: [Qt-creator] linking libs with shadow builds fails

2010-09-24 Thread Matthias Pospiech
Am 24.09.2010 02:04, schrieb Danny Price: I didn't provide a link. I said I could provide a sample project if you need it. Your post said that the library was created as a project in a subdir therefore it is not an 'external' library. And the path is not correct - if it was correct you would

Re: [Qt-creator] linking libs with shadow builds fails

2010-09-24 Thread Christian Kandeler
On 09/23/2010 10:54 PM, ext Matthias Pospiech wrote: > I experience so frequently problems with shadow builds that I switch > them off by default. > However I understand the principle behind the shadow builds and would > also like to understand > how to get my project working with shadow builds.