"Installing" a console application

Hi,

I’m working on a command line tool. Normally if I create a command line tool in a different language to Xojo I just copy the compiled binary to /usr/local/bin and then can run the tool from anywhere in the Terminal as /usr/local/bin is in my PATH. How does this work with Xojo console applications? Xojo produces a binary and a libs folder. What do I do with the libs folder? Is there an easy way to install console applications so they are available system wide?

Thanks,

just point the PATH variable to your app folder.

I guess that would work. Thanks.