summaryrefslogtreecommitdiffstats
path: root/src/filters
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/filters
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/filters')
-rw-r--r--src/filters/CMakeLists.txt47
1 files changed, 23 insertions, 24 deletions
diff --git a/src/filters/CMakeLists.txt b/src/filters/CMakeLists.txt
index 554402d35..32819fa68 100644
--- a/src/filters/CMakeLists.txt
+++ b/src/filters/CMakeLists.txt
@@ -1,25 +1,24 @@
-SET(filters_SRC
-blend.cpp
-colormatrix.cpp
-componenttransfer.cpp
-componenttransfer-funcnode.cpp
-composite.cpp
-convolvematrix.cpp
-diffuselighting.cpp
-displacementmap.cpp
-distantlight.cpp
-flood.cpp
-image.cpp
-merge.cpp
-mergenode.cpp
-morphology.cpp
-offset.cpp
-pointlight.cpp
-specularlighting.cpp
-spotlight.cpp
-tile.cpp
-turbulence.cpp
+set(filters_SRC
+ blend.cpp
+ colormatrix.cpp
+ componenttransfer.cpp
+ componenttransfer-funcnode.cpp
+ composite.cpp
+ convolvematrix.cpp
+ diffuselighting.cpp
+ displacementmap.cpp
+ distantlight.cpp
+ flood.cpp
+ image.cpp
+ merge.cpp
+ mergenode.cpp
+ morphology.cpp
+ offset.cpp
+ pointlight.cpp
+ specularlighting.cpp
+ spotlight.cpp
+ tile.cpp
+ turbulence.cpp
)
-ADD_LIBRARY(filters STATIC ${filters_SRC})
-TARGET_LINK_LIBRARIES(filters
-2geom ${INKSCAPE_LIBS})
+add_library(filters STATIC ${filters_SRC})
+target_link_libraries(filters 2geom ${INKSCAPE_LIBS})