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