1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
pkglib_LTLIBRARIES = libk3dmesh.la
libk3dmesh_la_SOURCES = \
array_1d.cpp \
bevel_faces.cpp \
bevel_points.cpp \
blobbies.cpp \
blobby_polygonizer.cpp \
cap_hole.cpp \
catmull_clark_subdivider.cpp \
delete_selected.cpp \
edges_to_blobby.cpp \
extrude_faces.cpp \
filter_faces_by_color.cpp \
freehand_polygon.cpp \
frozen_mesh.cpp \
knot_curve.cpp \
lawn.cpp \
lightning.cpp \
lissajous_curve.cpp \
make_bilinear_patches.cpp \
make_creases.cpp \
make_path.cpp \
make_sds.cpp \
merge_mesh.cpp \
mesh_instance.cpp \
mesh_stats.cpp \
module.cpp \
move_first_edge.cpp \
newell_primitives.cpp \
planar_map.cpp \
points_to_blobby.cpp \
poly_cone.cpp \
poly_cube.cpp \
poly_cushion.cpp \
poly_cylinder.cpp \
poly_grid.cpp \
poly_sphere.cpp \
poly_terrain_fft.cpp \
poly_terrain_hfbm.cpp \
poly_torus.cpp \
polygonize_bicubic_patches.cpp \
polygonize_blobbies.cpp \
polyhedron.cpp \
sds_corner.cpp \
sds_crease.cpp \
select_clockwise.cpp \
select_companion.cpp \
select_face_by_number.cpp \
set_material.cpp \
smooth_shade.cpp \
sphere_eversion.cpp \
split_edges.cpp \
split_faces.cpp \
split_faces_parallel.cpp \
starfield.cpp \
subdiv_algorithms.h \
subdiv_algorithms.cpp \
surface_polygonizer.cpp \
surface_polygonizer.h \
tag_color.cpp \
triangulate_faces.cpp
libk3dmesh_la_LIBADD = $(top_builddir)/boost/libs/regex/src/libregexpp.la $(top_builddir)/k3dsdk/libk3dsdk.la $(top_builddir)/sdpxml/libsdpxml.la @K3D_OPENGL_LIBS@ @K3D_SIGC_LIBS@ @K3D_OPENGLU_LIBS@
AM_CXXFLAGS = @K3D_CXXFLAGS@
AM_CPPFLAGS = @K3D_CPPFLAGS@ @K3D_SIGC_CFLAGS@ @K3D_OPENGL_CFLAGS@ @K3D_OPENGLU_CFLAGS@
|