Sam Hocevar 2f1ca4a550 | пре 8 година | |
---|---|---|
.travis | пре 8 година | |
XCode/libcacaXCode.xcodeproj | пре 13 година | |
build/autotools | пре 8 година | |
caca | пре 8 година | |
caca-php | пре 12 година | |
caca-sharp | пре 8 година | |
cxx | пре 8 година | |
doc | пре 8 година | |
examples | пре 8 година | |
java | пре 8 година | |
kernel | пре 8 година | |
perl | пре 15 година | |
python | пре 8 година | |
ruby | пре 8 година | |
src | пре 8 година | |
tools | пре 8 година | |
win32 | пре 8 година | |
.gitignore | пре 9 година | |
.travis.yml | пре 9 година | |
AUTHORS | пре 14 година | |
COPYING | пре 12 година | |
COPYING.GPL | пре 18 година | |
COPYING.ISC | пре 15 година | |
COPYING.LGPL | пре 19 година | |
ChangeLog | пре 12 година | |
Makefile.am | пре 8 година | |
NEWS | пре 12 година | |
NOTES | пре 15 година | |
README | пре 14 година | |
THANKS | пре 12 година | |
bootstrap | пре 9 година | |
build-dos | пре 15 година | |
build-kernel | пре 15 година | |
build-win32 | пре 12 година | |
build-win64 | пре 12 година | |
caca-config.in | пре 15 година | |
configure.ac | пре 9 година | |
libcaca.sln | пре 12 година | |
libcaca.spec | пре 19 година |
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`