From: ellson Date: Tue, 31 Mar 2009 15:07:56 +0000 (+0000) Subject: Hook up Glen's new -Tvdx Visio renderer X-Git-Tag: LAST_LIBGRAPH~32^2~2211 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=13fd3ce5519b046b2be2a2b37a601a0e0a1db0bc;p=graphviz Hook up Glen's new -Tvdx Visio renderer --- diff --git a/plugin/Makefile.am b/plugin/Makefile.am index 3a958449d..9ea4acc1b 100644 --- a/plugin/Makefile.am +++ b/plugin/Makefile.am @@ -1,6 +1,6 @@ # $Id$ $Revision$ ## Process this file with automake to produce Makefile.in -SUBDIRS = core devil gd gdk_pixbuf gdiplus glitz gs gtk lasi ming pango quartz rsvg xlib dot_layout neato_layout +SUBDIRS = core devil gd gdk_pixbuf gdiplus glitz gs gtk lasi ming pango quartz rsvg visio xlib dot_layout neato_layout EXTRA_DIST = Makefile.old diff --git a/plugin/visio/.cvsignore b/plugin/visio/.cvsignore new file mode 100644 index 000000000..2ae581798 --- /dev/null +++ b/plugin/visio/.cvsignore @@ -0,0 +1,7 @@ +*.la +*.lo +.deps +.libs +Makefile +Makefile.in +CMakeFiles CMakeTmp CMakeFiles CMakeCache.txt cmake_install.cmake diff --git a/plugin/visio/Makefile.am b/plugin/visio/Makefile.am new file mode 100644 index 000000000..883883e70 --- /dev/null +++ b/plugin/visio/Makefile.am @@ -0,0 +1,52 @@ +# $Id$ $Revision$ +## Process this file with automake to produce Makefile.in + +if WITH_CGRAPH +GRAPH = cgraph +else +GRAPH = graph +endif + +AM_CPPFLAGS = \ + -I$(top_srcdir) \ + -I$(top_srcdir)/lib/common \ + -I$(top_srcdir)/lib/pathplan \ + -I$(top_srcdir)/lib/gvc \ + -I$(top_srcdir)/lib/$(GRAPH) \ + -I$(top_srcdir)/lib/cdt \ + $(VISIO_CFLAGS) + +noinst_HEADERS = VisioGraphic.h VisioRender.h VisioText.h + +if WITH_VISIO +noinst_LTLIBRARIES = libgvplugin_visio_C.la +if WITH_WIN32 +lib_LTLIBRARIES = libgvplugin_visio.la +else +pkglib_LTLIBRARIES = libgvplugin_visio.la +endif +endif + +libgvplugin_visio_C_la_SOURCES = \ + gvplugin_visio.c \ + VisioGraphic.cpp \ + VisioRender.cpp \ + VisioText.cpp \ + gvrender_visio_vdx.cpp + +libgvplugin_visio_la_LDFLAGS = -version-info @GVPLUGIN_VERSION_INFO@ +libgvplugin_visio_la_SOURCES = $(libgvplugin_visio_C_la_SOURCES) +libgvplugin_visio_la_LIBADD = \ + $(top_builddir)/lib/gvc/libgvc.la @VISIO_LIBS@ + +if WITH_WIN32 +libgvplugin_visio_la_LDFLAGS += -no-undefined +endif + +if WITH_DARWIN9 +libgvplugin_visio_la_LDFLAGS += -Wl,-exported_symbol,_gvplugin_visio_LTX_library +endif + +EXTRA_DIST = + +DISTCLEANFILES =