I’m trying to embed Qt on an ARM system, in order to use a touchscreen with my own application. Everything works fine. In fact I already made a small standalone application to test and it runs perfect.
Now I need this Qt application to be linked with the others applications on my system.
The thing is, we have our own Makefile system that creates the packages and other things, and then we just have to send the .deb to the ARM system and unpacked it to have the software installed. By the way, these makefiles have special rules. But I need the Qt makefile’s rules too, in order to be able to compile.
Is there a way to mix Qt Makefile and my Makefile? Do you have an idea?
We finally solved the problem : we call
qmakein our own makefile to create a makefile for Qt ; then we simply make the Qt makefile and then create our packages.We had another link issue, but we solved it by linking the good libs in the .pro ; that was quite easy in fact x)
Thanks anyway !