I have two big files I want to pack/deploy with my application. On desktop, that would be as easy as copying them to deployment archive, but I am also targeting Android. I don’t want to make these files a QResource
for two reasons:
- One of them is 250MB, I don’t think file that big belongs inside the binary
- I really want them to be on filesystem on Desktop platforms
I want to set things up so that by default when I deploy the app, I’ll have a reliable filesystem path to find the files at. Ideally applicationDirPath() + myFilename
.
How can I tell Qt that certain files in the project dir belong with my application executable?