diff options
author | Robin Watts <robin.watts@artifex.com> | 2010-02-04 17:21:28 +0000 |
---|---|---|
committer | Robin Watts <robin.watts@artifex.com> | 2010-02-04 17:21:28 +0000 |
commit | be056259874d0084c732bd342570b55cf87a092a (patch) | |
tree | 665f5f530475f62ff098595e57be3de887905819 /main | |
parent | e3213353e5fb5e379df0164fc09ad007716a6d1e (diff) |
Bring svg_msvc.mak into line with xps_msvc.mak. This solves the situation of
the produced gsvg.exe not actually supporting SVGs.
No expected differences as neither svg or the msvc builds are being tested
in the cluster.
git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@10709 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'main')
-rw-r--r-- | main/pcl6_msvc.mak | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/main/pcl6_msvc.mak b/main/pcl6_msvc.mak index 7445f7a99..ae7cd54de 100644 --- a/main/pcl6_msvc.mak +++ b/main/pcl6_msvc.mak @@ -133,6 +133,14 @@ XPSGENDIR=$(GENDIR) XPSOBJDIR=$(GENDIR) !endif +!ifndef SVGGENDIR +SVGGENDIR=$(GENDIR) +!endif + +!ifndef SVGOBJDIR +SVGOBJDIR=$(GENDIR) +!endif + !ifndef SBRDIR SBRDIR=$(GENDIR) !endif @@ -211,10 +219,17 @@ XCFLAGS=/DXPS_INCLUDED !endif !endif +!ifdef SVG_INCLUDED +!ifndef SVG_TOP_OBJ +SVG_TOP_OBJ=$(SVGOBJDIR)/svgtop.$(OBJ) +XCFLAGS=$(XCFLAGS) /DSVG_INCLUDED +!endif +!endif + XCFLAGS=$(XCFLAGS) $(PDL_INCLUDE_FLAGS) !ifndef TOP_OBJ -TOP_OBJ=$(PCL_TOP_OBJ) $(PXL_TOP_OBJ) $(PSI_TOP_OBJ) $(XPS_TOP_OBJ) +TOP_OBJ=$(PCL_TOP_OBJ) $(PXL_TOP_OBJ) $(PSI_TOP_OBJ) $(XPS_TOP_OBJ) $(SVG_TOP_OBJ) !endif !ifdef SBR |