Sam Hocevar f32c24a10d | 12 vuotta sitten | |
---|---|---|
XCode/libcacaXCode.xcodeproj | 13 vuotta sitten | |
caca | 12 vuotta sitten | |
caca-php | 12 vuotta sitten | |
caca-sharp | 12 vuotta sitten | |
cxx | 12 vuotta sitten | |
doc | 12 vuotta sitten | |
examples | 12 vuotta sitten | |
java | 12 vuotta sitten | |
kernel | 12 vuotta sitten | |
perl | 15 vuotta sitten | |
python | 12 vuotta sitten | |
ruby | 12 vuotta sitten | |
src | 12 vuotta sitten | |
test | 12 vuotta sitten | |
tools | 12 vuotta sitten | |
win32 | 12 vuotta sitten | |
.gitignore | 12 vuotta sitten | |
AUTHORS | 14 vuotta sitten | |
COPYING | 12 vuotta sitten | |
COPYING.GPL | 18 vuotta sitten | |
COPYING.ISC | 15 vuotta sitten | |
COPYING.LGPL | 19 vuotta sitten | |
ChangeLog | 12 vuotta sitten | |
Makefile.am | 12 vuotta sitten | |
NEWS | 12 vuotta sitten | |
NOTES | 15 vuotta sitten | |
README | 14 vuotta sitten | |
THANKS | 12 vuotta sitten | |
bootstrap | 12 vuotta sitten | |
build-dos | 15 vuotta sitten | |
build-kernel | 15 vuotta sitten | |
build-win32 | 12 vuotta sitten | |
build-win64 | 12 vuotta sitten | |
caca-config.in | 15 vuotta sitten | |
configure.ac | 12 vuotta sitten | |
libcaca.sln | 12 vuotta sitten | |
libcaca.spec | 19 vuotta sitten |
Building libcaca
o If you are using a Git or SVN checkout, you need to run the
bootstrap script in order to generate configure. This is not
necessary for official tarballs.
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`