mirror of
https://github.com/processing/processing4.git
synced 2026-02-11 01:29:17 +01:00
more library/menu work.. almost have video working properly
This commit is contained in:
@@ -93,7 +93,8 @@ public class PdeRuntime implements PdeMessageConsumer {
|
||||
"-Djava.library.path=" +
|
||||
// sketch.libraryPath might be ""
|
||||
// librariesClassPath will always have sep char prepended
|
||||
sketch.libraryPath + PdeSketchbook.librariesClassPath,
|
||||
sketch.libraryPath + PdeSketchbook.librariesClassPath +
|
||||
File.pathSeparator + System.getProperty("java.library.path"),
|
||||
"-cp",
|
||||
sketch.classPath + PdeSketchbook.librariesClassPath,
|
||||
"processing.core.PApplet",
|
||||
@@ -102,6 +103,10 @@ public class PdeRuntime implements PdeMessageConsumer {
|
||||
sketch.mainClassName
|
||||
};
|
||||
|
||||
//for (int i = 0; i < command.length; i++) {
|
||||
// System.out.println(i + " = " + command[i]);
|
||||
//}
|
||||
|
||||
//PApplet.println(PApplet.join(command, " "));
|
||||
process = Runtime.getRuntime().exec(command);
|
||||
new SystemOutSiphon(process.getInputStream());
|
||||
|
||||
Reference in New Issue
Block a user