I have a python script which has a variable 'var' containing a path to a library file which is required by wix to create a msi. I need to send this 'var' to wix proj.How can i pass? My wix code looks somewhat like this..
<Component Id='MainExecutable' Guid='*'>
<File Id='ExecutableFile' Name='mc.exe' DiskId='1' Source='c:\my path to\mc.exe'KeyPath='yes'/>
</Component>
The Source path in file id should get from 'var' in python script.