summaryrefslogtreecommitdiffstats
path: root/src/live_effects
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-06-12 18:27:29 +0000
committerCampbell Barton <ideasman42@gmail.com>2011-06-12 18:27:29 +0000
commit0ddedab9c6185028661dcaaac9f6fbca4c9e93fc (patch)
treebbc7867e964a5b358b7b144df7c434941f7f06bf /src/live_effects
parentsupport python3.x for other i18n scripts (diff)
downloadinkscape-0ddedab9c6185028661dcaaac9f6fbca4c9e93fc.tar.gz
inkscape-0ddedab9c6185028661dcaaac9f6fbca4c9e93fc.zip
work in progress cmake commit:
- cmake now builds all files that automake does but does NOT link yet - inlcudes nasty hard coded paths and libs (will replace once linking works) (bzr r10272)
Diffstat (limited to 'src/live_effects')
-rw-r--r--src/live_effects/CMakeLists.txt81
-rw-r--r--src/live_effects/parameter/CMakeLists.txt24
2 files changed, 58 insertions, 47 deletions
diff --git a/src/live_effects/CMakeLists.txt b/src/live_effects/CMakeLists.txt
index 70e8cbaf8..42f8208ec 100644
--- a/src/live_effects/CMakeLists.txt
+++ b/src/live_effects/CMakeLists.txt
@@ -1,37 +1,48 @@
-ADD_SUBDIRECTORY(parameter)
+add_subdirectory(parameter)
-SET(live_effects_SRC
-bezctx.cpp
-effect.cpp
-lpe-bendpath.cpp
-lpe-boolops.cpp
-lpe-circle_with_radius.cpp
-lpe-constructgrid.cpp
-lpe-curvestitch.cpp
-lpe-envelope.cpp
-lpe-gears.cpp
-lpegroupbbox.cpp
-lpe-interpolate.cpp
-lpe-knot.cpp
-lpe-rough-hatches.cpp
-lpe-lattice.cpp
-lpe-mirror_symmetry.cpp
-lpeobject.cpp
-lpeobject-reference.cpp
-lpe-patternalongpath.cpp
-lpe-perp_bisector.cpp
-lpe-perspective_path.cpp
-lpe-powerstroke.cpp
-lpe-skeleton.cpp
-lpe-sketch.cpp
-lpe-spiro.cpp
-lpe-tangent_to_curve.cpp
-lpe-test-doEffect-stack.cpp
-lpe-vonkoch.cpp
-lpe-dynastroke.cpp
-spiro.cpp
-${live_effects_parameter_SRC}
+set(live_effects_SRC
+ bezctx.cpp
+ effect.cpp
+ lpe-angle_bisector.cpp
+ lpe-bendpath.cpp
+ lpe-boolops.cpp
+ lpe-circle_3pts.cpp
+ lpe-circle_with_radius.cpp
+ lpe-constructgrid.cpp
+ lpe-copy_rotate.cpp
+ lpe-curvestitch.cpp
+ lpe-dynastroke.cpp
+ lpe-envelope.cpp
+ lpe-extrude.cpp
+ lpe-gears.cpp
+ lpe-interpolate.cpp
+ lpe-knot.cpp
+ lpe-lattice.cpp
+ lpe-line_segment.cpp
+ lpe-mirror_symmetry.cpp
+ lpe-offset.cpp
+ lpe-parallel.cpp
+ lpe-path_length.cpp
+ lpe-patternalongpath.cpp
+ lpe-perp_bisector.cpp
+ lpe-perspective_path.cpp
+ lpe-powerstroke.cpp
+ lpe-recursiveskeleton.cpp
+ lpe-rough-hatches.cpp
+ lpe-ruler.cpp
+ lpe-skeleton.cpp
+ lpe-sketch.cpp
+ lpe-spiro.cpp
+ lpe-tangent_to_curve.cpp
+ lpe-test-doEffect-stack.cpp
+ lpe-text_label.cpp
+ lpe-vonkoch.cpp
+ lpegroupbbox.cpp
+ lpeobject-reference.cpp
+ lpeobject.cpp
+ spiro.cpp
+ ${live_effects_parameter_SRC}
)
-ADD_LIBRARY(live_effects STATIC ${live_effects_SRC})
-TARGET_LINK_LIBRARIES(live_effects
-2geom ${INKSCAPE_LIBS}) \ No newline at end of file
+
+add_library(live_effects STATIC ${live_effects_SRC})
+target_link_libraries(live_effects 2geom ${INKSCAPE_LIBS})
diff --git a/src/live_effects/parameter/CMakeLists.txt b/src/live_effects/parameter/CMakeLists.txt
index 8657b2bec..04a1080f4 100644
--- a/src/live_effects/parameter/CMakeLists.txt
+++ b/src/live_effects/parameter/CMakeLists.txt
@@ -1,13 +1,13 @@
-SET(live_effects_parameter_SRC
-array.cpp
-bool.cpp
-parameter.cpp
-path.cpp
-path-reference.cpp
-point.cpp
-powerstrokepointarray.cpp
-random.cpp
-text.cpp
-unit.cpp
-vector.cpp
+set(live_effects_parameter_SRC
+ array.cpp
+ bool.cpp
+ parameter.cpp
+ path.cpp
+ path-reference.cpp
+ point.cpp
+ powerstrokepointarray.cpp
+ random.cpp
+ text.cpp
+ unit.cpp
+ vector.cpp
)