Copying files
Pretty simple really, I have a folder which is next to my output Setup.exe I want to copy all of the files from that folder into my installation directory:
CreateDirectory "$INSTDIR\XML"
CopyFiles "XML\*.xml" "$INSTDIR\XML"
Doesn't work, keeps saying copying failed.
What am I doing wrong?