Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 
Sam Hocevar f32c24a10d build: fix the WTFPL homepage and copyright information. před 12 roky
..
examples build: fix the WTFPL homepage and copyright information. před 12 roky
org/zoy/caca build: fix the WTFPL homepage and copyright information. před 12 roky
.gitignore Build Java examples and add wrapper scripts to run them. před 15 roky
Makefile.am Fix distribution of Java source. před 15 roky
README Large source code cleanup, getting rid of spaces, tabs, and svn keywords. před 15 roky
caca_java_common.c build: fix the WTFPL homepage and copyright information. před 12 roky
caca_java_common.h build: fix the WTFPL homepage and copyright information. před 12 roky
org_zoy_caca_Attribute.c build: fix the WTFPL homepage and copyright information. před 12 roky
org_zoy_caca_Caca.c build: fix the WTFPL homepage and copyright information. před 12 roky
org_zoy_caca_Canvas.c build: fix the WTFPL homepage and copyright information. před 12 roky
org_zoy_caca_Display.c build: fix the WTFPL homepage and copyright information. před 12 roky
org_zoy_caca_Dither.c build: fix the WTFPL homepage and copyright information. před 12 roky
org_zoy_caca_Event.c build: fix the WTFPL homepage and copyright information. před 12 roky
org_zoy_caca_Font.c build: fix the WTFPL homepage and copyright information. před 12 roky

README


Building the libcaca Java bindings

o In the configure step, ensure the --enable-java flag is turned on.

o `make install` will install:
- libjava.so in ${libdir}/jni,
- libjava.jar in ${datadir}/java.


Using the libcaca Java bindings

o Look into examples/ for source code examples.

o Running an application which uses the libcaca Java bindings:

java -Djava.library.path=${libdir}/jni \
-cp ${datadir}/java/libjava.jar:<classpath> <class name>