Changeset 3518


Ignore:
Timestamp:
05/25/09 02:16:32 (4 years ago)
Author:
sam
Message:

First attempt at a super-compressor for the purpose of sending images to
Twitter, rendering this service slightly more useful. It's still full of
crap, of course.

Location:
libpipi/trunk/examples
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • libpipi/trunk/examples/.gitignore

    r3347 r3518  
    55histogram 
    66img2rubik 
     7img2twit 
    78line 
     9makemovie 
    810sharpen 
    911storyboard 
  • libpipi/trunk/examples/Makefile.am

    r3413 r3518  
    44 
    55noinst_PROGRAMS = edd img2rubik sharpen floodfill line bezier histogram \ 
    6         colorstring $(makemovie) $(storyboard) 
     6        colorstring img2twit $(makemovie) $(storyboard) $(img2twit) 
    77 
    88edd_SOURCES = edd.c 
     
    3434storyboard = storyboard 
    3535endif 
     36 
    3637makemovie_SOURCES = makemovie.c 
    3738makemovie_LDADD = ../pipi/libpipi.la 
     
    4445storyboard_LDFLAGS = $(LIBAVCODEC_LIBS) $(LIBAVFORMAT_LIBS) $(LIBSWSCALE_LIBS) 
    4546 
     47if USE_CGAL 
     48img2twit = img2twit 
     49endif 
     50 
     51img2twit_SOURCES = img2twit.cpp 
     52img2twit_LDADD = ../pipi/libpipi.la 
     53img2twit_CXXFLAGS = -frounding-math 
     54img2twit_LDFLAGS = -lCGAL 
     55 
Note: See TracChangeset for help on using the changeset viewer.