summaryrefslogtreecommitdiffstats
path: root/src/libavoid/Makefile.am
diff options
context:
space:
mode:
authorSylvain Chiron <chironsylvain@orange.fr>2017-07-01 11:36:41 +0000
committerSylvain Chiron <chironsylvain@orange.fr>2017-07-01 11:36:41 +0000
commitfd733201b82f39655488a286c89142f321ef9dc9 (patch)
treea12c70f213414f69467f666619b1552103f6370e /src/libavoid/Makefile.am
parentHackfest icon work: restore selected menu icons and make theming easier (diff)
downloadinkscape-fd733201b82f39655488a286c89142f321ef9dc9.tar.gz
inkscape-fd733201b82f39655488a286c89142f321ef9dc9.zip
Updated libs from the Adaptagrams project: libavoid, libcola and libvspc; changed the code to match the new API
Signed-off-by: Sylvain Chiron <chironsylvain@orange.fr>
Diffstat (limited to 'src/libavoid/Makefile.am')
-rw-r--r--src/libavoid/Makefile.am91
1 files changed, 91 insertions, 0 deletions
diff --git a/src/libavoid/Makefile.am b/src/libavoid/Makefile.am
new file mode 100644
index 000000000..837dacb57
--- /dev/null
+++ b/src/libavoid/Makefile.am
@@ -0,0 +1,91 @@
+EXTRA_DIST=libavoid.pc.in
+
+lib_LTLIBRARIES = libavoid.la
+libavoid_la_CPPFLAGS = -I$(top_srcdir) -I$(includedir)/libavoid -fPIC
+libavoid_la_LDFLAGS = -no-undefined
+
+libavoid_la_SOURCES = connectionpin.cpp \
+ connector.cpp \
+ connend.cpp \
+ geometry.cpp \
+ geomtypes.cpp \
+ graph.cpp \
+ junction.cpp \
+ makepath.cpp \
+ obstacle.cpp \
+ orthogonal.cpp \
+ router.cpp \
+ shape.cpp \
+ timer.cpp \
+ vertices.cpp \
+ viscluster.cpp \
+ visibility.cpp \
+ vpsc.cpp \
+ hyperedge.cpp \
+ hyperedgeimprover.cpp \
+ mtst.cpp \
+ hyperedgetree.cpp \
+ scanline.cpp \
+ actioninfo.cpp \
+ assertions.h \
+ connector.h \
+ connectionpin.h \
+ connend.h \
+ debug.h \
+ geometry.h \
+ geomtypes.h \
+ graph.h \
+ junction.h \
+ libavoid.h \
+ makepath.h \
+ obstacle.h \
+ orthogonal.h \
+ router.h \
+ shape.h \
+ timer.h \
+ vertices.h \
+ viscluster.h \
+ visibility.h \
+ hyperedge.h \
+ mtst.h \
+ hyperedgetree.h \
+ scanline.h \
+ actioninfo.h \
+ vpsc.h \
+ debughandler.h
+
+libavoidincludedir = $(includedir)/libavoid
+libavoidinclude_HEADERS = assertions.h \
+ connector.h \
+ connectionpin.h \
+ connend.h \
+ debug.h \
+ dllexport.h \
+ geometry.h \
+ geomtypes.h \
+ graph.h \
+ junction.h \
+ libavoid.h \
+ makepath.h \
+ obstacle.h \
+ orthogonal.h \
+ router.h \
+ shape.h \
+ timer.h \
+ vertices.h \
+ viscluster.h \
+ visibility.h \
+ hyperedge.h \
+ hyperedgeimprover.h \
+ mtst.h \
+ hyperedgetree.h \
+ scanline.h \
+ actioninfo.h \
+ vpsc.h \
+ debughandler.h
+
+pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA = libavoid.pc
+
+SUBDIRS = . tests
+