You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README 489 B

12345678910111213141516171819
  1. Building the libcaca Java bindings
  2. o In the configure step, ensure the --enable-java flag is turned on.
  3. o `make install` will install:
  4. - libjava.so in ${libdir}/jni,
  5. - libjava.jar in ${datadir}/java.
  6. Using the libcaca Java bindings
  7. o Look into examples/ for source code examples.
  8. o Running an application which uses the libcaca Java bindings:
  9. java -Djava.library.path=${libdir}/jni \
  10. -cp ${datadir}/java/libjava.jar:<classpath> <class name>