[QBS] Is there are way to deploy *qm files?

2014-11-06 Thread Denis Shienkov
Hi all. How I can deploy a *.qm files together with the executable files? For example I have this in *.qbs project file: ... ... files: [ main.cpp, main.ts ] ... ... Group { fileTags: product.type qbs.install: true qbs.installDir: blabla } But after deployment I see only one

Re: [QBS] Is there are way to deploy *qm files?

2014-11-06 Thread Joerg Bornemann
On 06-Nov-14 13:44, Denis Shienkov wrote: How I can deploy a *.qm files together with the executable files? You need to tell qbs that artifacts that are tagged as qm should be installed: Group { fileTagsFilter: qm qbs.install: true qbs.installDir: blabla } See also

Re: [QBS] Is there are way to deploy *qm files?

2014-11-06 Thread Denis Shienkov
Hi Joerg, many many thanks. :) 2014-11-06 16:53 GMT+03:00 Joerg Bornemann joerg.bornem...@theqtcompany.com : On 06-Nov-14 13:44, Denis Shienkov wrote: How I can deploy a *.qm files together with the executable files? You need to tell qbs that artifacts that are tagged as qm should be