Hi,

is it somehow possible to add a resource to the resources file (*.qrc)
depending on the targeted platform? I have a few resources that are only
needed on specific targets (e.q Android, iOS). Now I would like to make
sure that those resources are only added on the targeted platform (to
prevent that the executable gets to big). I know, that I can use different
*qrc files (depending on the targeted platform) and include them when
needed.

e.q:

android{
    RESOURCES += android.qrc
}

ios{
   RESOURCES += ios.qrc
}

But as most of the resources are shared between all targets, keeping those
resource files in sync is really difficult. Is there a possibility to use
just one *.qrc file and  specify platform dependent entries in a different
way?

Thanks,
Bernhard
_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to