in reply to Re: Making a standalone executable
in thread Making a standalone executable

I think the problem was that I wasn't adding the custom module file using the add module function with pp. I have an executable that works on my computer, but the executable has a camel logo. I'm assuming that means that it is associated with perl in some way. I'm trying to see if it works on a computer without perl installed right now, but it doesn't seem like it does. Am I just not including the interpreter in the executable?

Here's the line of code that I wrote to create the executable:

pp -M "custom module" -o filename.exe perlscript.pl

Replies are listed 'Best First'.
Re^3: Making a standalone executable
by marto (Cardinal) on Jun 04, 2013 at 09:24 UTC

    As a side note to your post, the camel logo is the default provided by pp. You can specify another icon of your choosing: pp -i yourappicon.ico .....

    .