Re: [Interest] Again this problem but now on Linux

2015-05-04 Thread william.croc...@analog.com
> If you define your classes in .h files (not .cpp files) and run qmake, > then you don't need to #include anything that moc produces. And if I only use a Q_OBJECT based class in one .cpp file I should now have to break it out into it's own header file just to make the build system happy. I acce

Re: [Interest] Again this problem but now on Linux

2015-05-04 Thread Sze Howe Koh
On 4 May 2015 at 11:43, Hamish Moffatt wrote: > > On 04/05/15 13:08, Nikos Chantziaras wrote: > > On 03/05/15 13:54, Igor Mironchik wrote: > >> Hi guys, > >> > >> I asked before about similar problem on Windows but now I have the same > >> problem on Linux. > >> > >> I have messagebox.cpp file tha

Re: [Interest] Again this problem but now on Linux

2015-05-04 Thread william.croc...@analog.com
On 05/03/2015 11:17 PM, Thiago Macieira wrote: > On Monday 04 May 2015 06:08:55 Nikos Chantziaras wrote: >> On 03/05/15 13:54, Igor Mironchik wrote: >>> Hi guys, >>> >>> I asked before about similar problem on Windows but now I have the same >>> problem on Linux. >>> >>> I have messagebox.cpp file

Re: [Interest] Again this problem but now on Linux

2015-05-03 Thread Hamish Moffatt
On 04/05/15 13:08, Nikos Chantziaras wrote: > On 03/05/15 13:54, Igor Mironchik wrote: >> Hi guys, >> >> I asked before about similar problem on Windows but now I have the same >> problem on Linux. >> >> I have messagebox.cpp file that should be moced, and in the end of the >> file I do #include "m

Re: [Interest] Again this problem but now on Linux

2015-05-03 Thread Thiago Macieira
On Monday 04 May 2015 06:08:55 Nikos Chantziaras wrote: > On 03/05/15 13:54, Igor Mironchik wrote: > > Hi guys, > > > > I asked before about similar problem on Windows but now I have the same > > problem on Linux. > > > > I have messagebox.cpp file that should be moced, and in the end of the > >

Re: [Interest] Again this problem but now on Linux

2015-05-03 Thread Nikos Chantziaras
On 03/05/15 13:54, Igor Mironchik wrote: > Hi guys, > > I asked before about similar problem on Windows but now I have the same > problem on Linux. > > I have messagebox.cpp file that should be moced, and in the end of the > file I do #include "messagebox.moc" Since you're using qmake, you shouldn

[Interest] Again this problem but now on Linux

2015-05-03 Thread Igor Mironchik
Hi guys, I asked before about similar problem on Windows but now I have the same problem on Linux. I have messagebox.cpp file that should be moced, and in the end of the file I do #include "messagebox.moc" If I compile with command line all is ok. I do qmake && make... But now I'm trying t