Hi,
We are able to create an exe by this lines in a make.pl script:
$pp = 'pp --gui';
$pp .= ' -z 9';
#$pp .= ' --clean';
$pp .= ' -f Bleach';
#$pp .= ' -f Bleach InfoWinner/Import/GetContent.pm';
#$pp .= ' --perlscript';
#$pp .= ' -F Bleach InfoWinner/Import/GetContent.pm';
$pp .= ' -i Resources/logo.ico';
$pp .= ' -M Win32::OLE -M InfoWinner::CRM::Outlook';
$pp .= ' -M Win32::OLE -M InfoWinner::CRM::GoldMine';
$pp .= " -o ${distination_dir}iwfast.exe iwfast.pl";
$pp .= ' -l '.$path_dll.'ssleay32.dll';
$pp .= ' -l '.$path_dll.'libeay32.dll';
Unfortunatly it's bleaching only the iwfast.pl script.
Now we are trying to Bleach all the source and modules in the app?
Is that possible? Reading the manual we should use -F, do we have to load each
module?
When we try -F the exe will not work anymore.
Any input appreciated to get al the source bleached.
Perry