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