> 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
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
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
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
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
> >
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
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