Qt Installer Framework - Additional operations not executed
Unsolved
Qt Creator and other tools
-
Hi,
I added operations from the "component.xml" configuration file :
<Operations> <Operation name="Mkdir"> <Argument>@TargetDir@/Folder1</Argument> </Operation> <Operation name="Mkdir"> <Argument>@TargetDir@/Folder2</Argument> </Operation> </Operations>
This does not work. However, if I add those operations in the control script :
component.addOperation("Mkdir", "@TargetDir@/Folder1"); component.addOperation("Mkdir", "@TargetDir@/Folder2");
This works fine.
This is a simple example with the "Mkdir" operation. I can observe the same behavior for other operations (e.g. Extract, CreateShortcut, ...)
What did I miss ?Qt 5.15.2
Qt Installer framework 4.0
Windows 10Many thanks in advance for your support.
Best regards