Sam Hocevar f20598339e | 18 vuotta sitten | |
---|---|---|
DotNet | 18 vuotta sitten | |
autotools | 21 vuotta sitten | |
caca | 18 vuotta sitten | |
cucul | 18 vuotta sitten | |
cxx | 18 vuotta sitten | |
doc | 18 vuotta sitten | |
kernel | 18 vuotta sitten | |
msvc | 18 vuotta sitten | |
perl | 18 vuotta sitten | |
python | 18 vuotta sitten | |
src | 18 vuotta sitten | |
test | 18 vuotta sitten | |
tools | 18 vuotta sitten | |
AUTHORS | 18 vuotta sitten | |
COPYING | 19 vuotta sitten | |
COPYING.GPL | 18 vuotta sitten | |
COPYING.LGPL | 19 vuotta sitten | |
ChangeLog | 18 vuotta sitten | |
Makefile.am | 18 vuotta sitten | |
NEWS | 18 vuotta sitten | |
NOTES | 18 vuotta sitten | |
README | 18 vuotta sitten | |
THANKS | 18 vuotta sitten | |
TODO | 18 vuotta sitten | |
bootstrap | 19 vuotta sitten | |
build-dos | 18 vuotta sitten | |
build-kernel | 18 vuotta sitten | |
build-win32 | 18 vuotta sitten | |
caca-config.in | 18 vuotta sitten | |
common.h | 18 vuotta sitten | |
configure.ac | 18 vuotta sitten | |
libcaca.spec | 19 vuotta sitten |
$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`