Re: [Qt-creator] use external terminal in Qt Creator

2015-07-13 Thread André Hartmann
Hi Freddy,

Are you on Linux?

Creator has a setting in the Tools -> Options -> Environment -> General 
tab to set the terminal.

The default is /usr/bin/xterm -e, but it seems you can insert your 
option -hold there also.

Then you have to check "Run in terminal" in the Projects mode -> Build & 
Run -> Run configuration.

Disclaimer: I have not tried this out.

Best regards,
André

Am 13.07.2015 um 23:29 schrieb Freddy Martinez Garcia:
> Hi guys... I'm new in my job and they work with KDevelop only because to
> debug the system, we need the option Use External Terminal with value
> *xterm -hold -e %exe
>
> *
> I have a lot of time working with Qt Creator, is my favorite C++ IDE and
> I'll like to use it, but I need this option for debugging the application...
>
> KDevelop has this option in the Launch Configuration dialog
>
> can I do de same with Qt Creator ??
>
> best regard
>
> *=
> "El tamaño de tus logros depende del tamaño de tus metas."
> *
> *C++ and Qt Senior Developer
> *
> *Lic. Computer Science
> *
> *Buenos Aires, Argentina
> *
> *
> *
>
>
> ___
> Qt-creator mailing list
> Qt-creator@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/qt-creator
>

___
Qt-creator mailing list
Qt-creator@qt-project.org
http://lists.qt-project.org/mailman/listinfo/qt-creator


Re: [Qt-creator] use external terminal in Qt Creator

2015-07-13 Thread Orgad Shaneh
On Tue, Jul 14, 2015 at 12:29 AM, Freddy Martinez Garcia <
freddy311...@gmail.com> wrote:

> Hi guys... I'm new in my job and they work with KDevelop only because to
> debug the system, we need the option Use External Terminal with value
>
> *xterm -hold -e %exe*
> I have a lot of time working with Qt Creator, is my favorite C++ IDE and
> I'll like to use it, but I need this option for debugging the application...
>
> KDevelop has this option in the Launch Configuration dialog
>
> can I do de same with Qt Creator ??
>
> best regard
>

Hi,

A new terminal plugin was announced recently. See
https://github.com/qterminal/terminalplugin

- Orgad
___
Qt-creator mailing list
Qt-creator@qt-project.org
http://lists.qt-project.org/mailman/listinfo/qt-creator


Re: [Qt-creator] Problem with file including

2015-07-13 Thread André Hartmann
Hi Pawel,

Don't ask why, adding the current directory to project.includes helps :)

project.includes:

.
common


Anyway, don't know if this is worth a bug report.

Best regards,
André


Am 13.07.2015 um 21:09 schrieb Pawel:
> Hello,
>
> I want to reheat a problem which was issued some time ago but still
> isn't fully solved. Maybe this is because on Linux this works correctly
> and problem is on Windows.
>
> The problem is that QtCreator is not able to file included files when it
> should. Below is simplest case which illustrates this.
>
> We have two source files:
>
> *main.cpp:*/
> #include 
>
> int main()
> {
>   A a;
>   a.fun();
> }/
> *
> *
> *header.h:*
> /#ifndef HEADER_A_H
> #define HEADER_A_H
>
> class A
> {
> public:
>   void fun()
>   {
>   }
> };
>
> #endif/*
> *
> *
> *
> *
> *
> The directory structure looks like this:*
> *
> *D:*
> *├───* *project
> ├───**───* *common
> │header.h
> * *├───**───* *src
>main.cpp
> *
> *
> *
>  From this I create the project using "Import Existing Project" and the
> content of project files is as following:*
> *
> *
> *
> *project.config**
> *
> /// Add predefined macros for your project here. For example:
> // #define THE_ANSWER 42/*
>
> *
> *project.creator:
> *
> /[General]/
> *
> *
> *project.files:
> *
> /common/header.h
> src/main.cpp/*
> *
> *
> *
> *project.includes:
> *
> /common/*
> *
> *
> *
> *
> *
> So from this I would expect that QtCreator will searching the /common/
> directory for include files (and this happens on Linux) but it doesn't.
> Instead it just says: "'common/header.h' file not found".*
> *
>
> I will be very thankful for any advise for to fix this.
>
> best regards
> Pawel
>
>
>
> --
> Using Opera's mail client: http://www.opera.com/mail/
>
>
> 
> Avast logo 
>
> This email has been checked for viruses by Avast antivirus software.
> www.avast.com 
>
>
>
>
> ___
> Qt-creator mailing list
> Qt-creator@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/qt-creator
>
___
Qt-creator mailing list
Qt-creator@qt-project.org
http://lists.qt-project.org/mailman/listinfo/qt-creator


[Qt-creator] LLDB Terminating on OS X with 3.5-RC1

2015-07-13 Thread Michael Jackson
Not sure if this has been reported for the Beta/RCs but on OS X LLDB seems to 
"terminate" a lot when debugging. It just plain crashes. I have not been able 
to nail it down when it happens, but it tends to happen a lot. We download the 
nightly builds and use those every day for our normal development. This is on 
OS X 10.8 and 10.9 using the latest Xcode tools available for the specific 
version of OS X that we are using.

I can try and put in a bug if it is needed unless someone else is tracking the 
issue?

Thanks
Mike Jackson

___
Qt-creator mailing list
Qt-creator@qt-project.org
http://lists.qt-project.org/mailman/listinfo/qt-creator


[Qt-creator] use external terminal in Qt Creator

2015-07-13 Thread Freddy Martinez Garcia
Hi guys... I'm new in my job and they work with KDevelop only because to
debug the system, we need the option Use External Terminal with value

*xterm -hold -e %exe*
I have a lot of time working with Qt Creator, is my favorite C++ IDE and
I'll like to use it, but I need this option for debugging the application...

KDevelop has this option in the Launch Configuration dialog

can I do de same with Qt Creator ??

best regard



*="El tamaño de tus logros
depende del tamaño de tus metas." *

*C++ and Qt Senior Developer*

*Lic. Computer Science*

*Buenos Aires, Argentina*
___
Qt-creator mailing list
Qt-creator@qt-project.org
http://lists.qt-project.org/mailman/listinfo/qt-creator


[Qt-creator] Problem with file including

2015-07-13 Thread Pawel

Hello,

I want to reheat a problem which was issued some time ago but still isn't  
fully solved. Maybe this is because on Linux this works correctly and

problem is on Windows.

The problem is that QtCreator is not able to file included files when it
should. Below is simplest case which illustrates this.

We have two source files:

main.cpp:
#include 

int main()
{
 A a;
 a.fun();
}

header.h:
#ifndef HEADER_A_H
#define HEADER_A_H

class A
{
public:
 void fun()
 {
 }
};

#endif


The directory structure looks like this:
D:
├─── project
├── common
│header.h
├── src
  main.cpp

From this I create the project using "Import Existing Project" and the
content of project files is as following:

project.config
// Add predefined macros for your project here. For example:
// #define THE_ANSWER 42

project.creator:
[General]

project.files:
common/header.h
src/main.cpp

project.includes:
common


So from this I would expect that QtCreator will searching the common
directory for include files (and this happens on Linux) but it doesn't.
Instead it just says: "'common/header.h' file not found".

I will be very thankful for any advise for to fix this.

best regards
Pawel



--
Using Opera's mail client: http://www.opera.com/mail/

---
This email has been checked for viruses by Avast antivirus software.
http://www.avast.com
___
Qt-creator mailing list
Qt-creator@qt-project.org
http://lists.qt-project.org/mailman/listinfo/qt-creator