Changeset 806
- Timestamp:
- Apr 18, 2006, 10:33:53 AM (17 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/README
r571 r806 11 11 --enable-gl: support for OpenGL rendering 12 12 --enable-win32: support for the Windows console 13 --enable-network: support for network output14 13 15 14 --disable-imlib2: remove Imlib2 support in cacaview 15 16 --disable-doc: do not build documentation 16 17 17 18 o Cross-compilation examples: … … 24 25 Using libcaca 25 26 26 o Look into the src/ directoryfor source code examples.27 o Look into the src/ and test/ directories for source code examples. 27 28 28 29 o Compiling a libcaca program is fairly simple: 29 30 30 gcc -c foobar.c -o foobar.o ` caca-config --cflags`31 gcc foobar.o -o foobar ` caca-config --libs`31 gcc -c foobar.c -o foobar.o `pkg-config --cflags caca` 32 gcc foobar.o -o foobar `pkg-config --libs caca` 32 33 33 34 Binary packages35 36 o As the API is not stable yet, everyone should statically link libcaca37 with their programs or libraries. DO NOT DISTRIBUTE SHARED VERSIONS38 OF LIBCACA.39 -
libcaca/trunk/TODO
r799 r806 16 16 17 17 o ASCII/ANSI art loading functions (maybe load them as sprites) 18 19 o throw away cucul_sqrt() and put cucul_rand() somewhere else20 18 21 19 … … 43 41 44 42 o better mask support in cucul_blit() 43 44 o factor Unicode character conversions, especially UCS4 -> UTF-8 45 45 46 46
Note: See TracChangeset
for help on using the changeset viewer.