I am very new to QtInstallerFramework but I have successfully created an 
installer for my project where I package a bunch of precompiled binaries so my 
developers do not have to build them. The convenience I would like to add to 
the installer is the ability to generate a simple text file with the values of 
where things got installed. I have been trying to find some tutorials and 
working through the documentation but I am coming up a bit short.

It looks like for each Package I need to add a bit in the config.xml file to 
setup a .js script file. Inside the script file I am a bit perplexed what to do?
function Component()
{
}

Component.prototype.createOperations = function()
{
        component.createOperations();

        component.addOperation("AppendFile" , "@TargetDir@/CMakeCache.txt", 
"set(BOOST_ROOT \"@TargetDir@/boost-1.55.0\")");
}

So that works. Can I have a "top level" script file that initially creates the 
file? I need to ensure that the file is written in a specific order. I tried 
adding a <Script></Script> section to the top level config file but that just 
threw errors.

Any help is much appreciated.
_________________________________________________________
Mike Jackson                            BlueQuartz Software
Help:                                drea...@bluequartz.net
Web|Download                  http://dream3d.bluequartz.net
_______________________________________________
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

Reply via email to