Sam Hocevar e0e5f0bbe2 | il y a 15 ans | |
---|---|---|
XCode/libcacaXCode.xcodeproj | il y a 15 ans | |
caca | il y a 15 ans | |
caca-php | il y a 15 ans | |
caca-sharp | il y a 15 ans | |
cxx | il y a 15 ans | |
doc | il y a 15 ans | |
examples | il y a 15 ans | |
java | il y a 15 ans | |
kernel | il y a 15 ans | |
perl | il y a 15 ans | |
python | il y a 15 ans | |
ruby | il y a 15 ans | |
src | il y a 15 ans | |
test | il y a 15 ans | |
tools | il y a 15 ans | |
win32 | il y a 15 ans | |
.gitignore | il y a 15 ans | |
AUTHORS | il y a 15 ans | |
COPYING | il y a 17 ans | |
COPYING.GPL | il y a 18 ans | |
COPYING.ISC | il y a 15 ans | |
COPYING.LGPL | il y a 19 ans | |
ChangeLog | il y a 15 ans | |
Makefile.am | il y a 15 ans | |
NEWS | il y a 15 ans | |
NOTES | il y a 15 ans | |
README | il y a 15 ans | |
THANKS | il y a 15 ans | |
bootstrap | il y a 15 ans | |
build-dos | il y a 15 ans | |
build-kernel | il y a 15 ans | |
build-win32 | il y a 15 ans | |
caca-config.in | il y a 15 ans | |
configure.ac | il y a 15 ans | |
libcaca.sln | il y a 15 ans | |
libcaca.spec | il y a 19 ans |
Building libcaca
o Run configure then make. Useful configure flags are:
--enable-ncurses: support for the ncurses library
--enable-slang: support for the SLang library
--enable-conio: support for MS-DOS conio.h
--enable-x11: support for native X11 rendering
--enable-gl: support for OpenGL rendering
--enable-win32: support for the Windows console
--enable-network: support for the network server
--disable-imlib2: remove Imlib2 support in cacaview
--disable-doc: do not build documentation
o Cross-compilation examples:
./configure --disable-imlib2 --host=i386-pc-msdosdjgpp
./configure --disable-imlib2 --host=i586-mingw32msvc
Using libcaca
o Look into the src/ and test/ directories for source code examples.
o Compiling a libcaca program is fairly simple:
gcc -c foobar.c -o foobar.o `pkg-config --cflags caca`
gcc foobar.o -o foobar `pkg-config --libs caca`