Sam Hocevar 7ebd74e3ee | hace 15 años | |
---|---|---|
XCode/libcacaXCode.xcodeproj | hace 15 años | |
caca | hace 15 años | |
caca-php | hace 15 años | |
caca-sharp | hace 15 años | |
cxx | hace 15 años | |
doc | hace 15 años | |
examples | hace 15 años | |
kernel | hace 15 años | |
perl | hace 18 años | |
python | hace 15 años | |
ruby | hace 15 años | |
src | hace 15 años | |
tests | hace 15 años | |
tools | hace 15 años | |
win32 | hace 15 años | |
.gitignore | hace 16 años | |
AUTHORS | hace 15 años | |
COPYING | hace 17 años | |
COPYING.GPL | hace 18 años | |
COPYING.ISC | hace 15 años | |
COPYING.LGPL | hace 19 años | |
ChangeLog | hace 16 años | |
Makefile.am | hace 15 años | |
NEWS | hace 15 años | |
NOTES | hace 18 años | |
README | hace 17 años | |
THANKS | hace 15 años | |
bootstrap | hace 15 años | |
build-dos | hace 16 años | |
build-kernel | hace 16 años | |
build-win32 | hace 16 años | |
caca-config.in | hace 16 años | |
configure.ac | hace 15 años | |
libcaca.sln | hace 15 años | |
libcaca.spec | hace 19 años |
$Id$
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`