Qt 6.11 is out! See what's new in the release
blog
Qt Installer Copy Operation Fails [SOLVED]
General and Desktop
2
Posts
1
Posters
1.4k
Views
1
Watching
-
I'm trying to create a setup file using Qt Installer Framework 1.4
I want to copy some files at the end of the installation process but it seems the installer is trying to copy those files before installation is completed.
What should I do?
By the way this is the code I use for copying using installer. It's inside a qs file which is called by installer.@
Component.prototype.createOperations = function()
{
// call the base create operations function
component.createOperations();component.addOperation("Copy", "@TargetDir@/somefile.txt", "@DesktopDir@/somefile.txt");}
@