hackthelobby/libcaca
cubernetes 08a5f49559 ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
..
.travis ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
XCode/libcacaXCode.xcodeproj ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
build ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
caca ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
caca-php ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
caca-sharp ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
cxx ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
doc ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
examples ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
java ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
kernel ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
perl ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
python ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
ruby ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
src ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
tools ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
.gitignore ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
.travis.yml ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
AUTHORS ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
COPYING ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
COPYING.GPL ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
COPYING.ISC ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
COPYING.LGPL ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
Makefile.am ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
NEWS ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
NOTES ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
README ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
THANKS ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
a ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
bootstrap ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
caca-config.in ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
configure.ac ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
libcaca.sln ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00
libcaca.spec ALL MF HACKED LIBCACA 2023-08-10 23:20:39 +02:00

README

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`