~hidravfx-dev-team/hidravfx/trunk

36 by illusions.hu at gmail
Voronoi parts just started
1
ADD_LIBRARY(hidra SHARED layer.c effects.c color.c set.c convolution.c options.c distance.c voronoimap.c voronoispace.c rasterizer.c spline.c vertex.c array.c)
31 by illusions.hu at gmail
Fixes for 64bit and Windows.
2
ADD_EXECUTABLE(hidravfx main.c pnm.c)
9 by Laszlo.simon
DEB package generation added.
3
TARGET_LINK_LIBRARIES(hidravfx m hidra)
30.1.1 by Simon Laszlo
CMAKE file fix.
4
TARGET_LINK_LIBRARIES(hidra m)
12 by Laszlo.simon
perl code generator instead of CPP, image accepted for all parameter.
5
INSTALL(
6
  TARGETS hidravfx hidra hidra
9 by Laszlo.simon
DEB package generation added.
7
  RUNTIME DESTINATION bin
8
  LIBRARY DESTINATION lib
12 by Laszlo.simon
perl code generator instead of CPP, image accepted for all parameter.
9
  ARCHIVE DESTINATION lib)
19 by Laszlo.simon
icon files added. cmake fix for 0.2.0
10
INSTALL_FILES(/etc/bash_completion.d FILES hidravfx_completion)
25 by Laszlo.simon
Color space conversions added (RGB, YIQ, LMS, XYZ, YCbCr, HSV, LAB, HSI, YC1C2)
11
INSTALL_FILES(/usr/include/hidravfx .h effects.h layer.h hidra.h color.h)
12 by Laszlo.simon
perl code generator instead of CPP, image accepted for all parameter.
12
ADD_CUSTOM_COMMAND(
13
   OUTPUT  effects.c effects.h
14
   COMMAND perl ../src/codegen.pl
15
   DEPENDS codegen.pl effects.pl)
29 by Laszlo.simon
Convolutions added (35 conv. matrix)
16