Sam Hocevar 64b6bfb328 | пре 18 година | |
---|---|---|
DotNet | пре 18 година | |
autotools | пре 21 година | |
caca | пре 18 година | |
cucul | пре 18 година | |
cxx | пре 18 година | |
debian | пре 18 година | |
doc | пре 18 година | |
kernel | пре 18 година | |
msvc | пре 18 година | |
perl | пре 18 година | |
python | пре 18 година | |
src | пре 18 година | |
test | пре 18 година | |
tools | пре 18 година | |
AUTHORS | пре 18 година | |
COPYING | пре 19 година | |
COPYING.GPL | пре 18 година | |
COPYING.LGPL | пре 19 година | |
ChangeLog | пре 18 година | |
Makefile.am | пре 18 година | |
NEWS | пре 18 година | |
NOTES | пре 18 година | |
README | пре 18 година | |
THANKS | пре 18 година | |
TODO | пре 18 година | |
bootstrap | пре 19 година | |
build-dos | пре 19 година | |
build-kernel | пре 18 година | |
build-win32 | пре 18 година | |
caca-config.in | пре 18 година | |
common.h | пре 18 година | |
configure.ac | пре 18 година | |
libcaca.spec | пре 19 година |
$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
--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`