qt - Custom deploy in QTCreator -
i working on qtcreator (3.0.x) targeting embedded linux device. fine except fact not able add custom file deploy step...
in .pro
file set:
target.path = /home/root installs += target
and able deploy executable remote device...
now if add custom files deployment process?
i'd tried add following lines .pro
file:
mypackage.files = /path/to/my/files/on/my/pc/* mypackage.path = /home/root installs += mypackage
but doesn't work...
how can that?
i try use wildcard/glob in the following way:
$$files(glob) — returns list of files match specified glob pattern
mypackage.files = $$files(/path/to/my/files/on/my/pc/*)
but in special case, easier specify directory since seem grabbing files anyhow, write personally:
mypackage.files = /path/to/my/files/on/my/pc
Comments
Post a Comment