hi,
My project is depend on two lib files.
I want to had the pro file the option that:
if he doesnt find one of the he NEED TO BUILD them.
!exists(NameOfFile1.a)
{
// what to write here???
}
!exists(NameOfFile2.a)
{
// what to write here???
}
I have the makefiles of the two lib include the source.
can anyone can help me here?
thank you!