in reply to Re^3: Class::DBI and compiling
in thread Class::DBI and compiling

ActiveState's PerlApp. I use Moose in the program as well, however I don't have that installed on the machine that's running the program either, and that works by instructing the compiler to include that module.

Replies are listed 'Best First'.
Re^5: Class::DBI and compiling
by marto (Cardinal) on Jul 10, 2014 at 14:27 UTC

    "PerlApp is not a compiler.". This is a packaging tool, like pp. If you were using pp I'd suggest you use the -x option:

    "Run perl inputfile to determine additonal run-time dependencies."

    You'd have to check the documentation for the equivalent of that, or pps -M option.

    Update: If you update your post please mark changes, touched on in How do I post a question effectively?

      I got it. Thanks for your help

      For anyone else who has this problem:
      -Go into your PerlApp Program
      -Go to the 'Files' tab
      -Right-click on Add modules
      -Select Add-Module
      -Type in the module name and select your desired option for the dependencies

        Thanks for posting the solution, I'm sure it'll be useful in future.