Is It Possible To Move The Lib Folder Away From The .exe

edited March 2014 in Using Processing

I need to move lib folder to a different place other than where the .exe or rename the folder however then my program wont be able to find the lib folder. So does anyone if it's even possible to do this, any suggestions would be appreciated.

Answers

  • which operating system?

  • windows 7

  • edited March 2014 Answer ✓

    Just create a .bat (or .cmd) file with content similar to the one created when exporting in 64-bit mode:

    @ echo off
    java -Djava.ext.dirs=H:\Temp\processing-libs -Djava.library.path=H:\Temp\processing-libs YourSketchName
    

    Actually, the second parameter isn't even needed:

    @ echo off
    java -Djava.ext.dirs=H:\Temp\processing-libs YourSketchName
    
  • :D thanks, this is a great help!

  • that smiley face has too many teeth......

Sign In or Register to comment.