diff options
Diffstat (limited to 'fitzdraw/Jamfile')
-rw-r--r-- | fitzdraw/Jamfile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/fitzdraw/Jamfile b/fitzdraw/Jamfile new file mode 100644 index 00000000..c76d9c6d --- /dev/null +++ b/fitzdraw/Jamfile @@ -0,0 +1,21 @@ +SubDir TOP fitzdraw ; + +Library libfitzdraw : + glyphcache.c + pixmap.c + porterduff.c + meshdraw.c + imagedraw.c + imageunpack.c + imagescale.c + pathscan.c + pathfill.c + pathstroke.c + render.c + blendmodes.c + ; + +if $(OSPLAT) = PPC { Library libfitzdraw : archppc.c ; } +if $(OSPLAT) = SPARC { Library libfitzdraw : archsparc.c ; } +if $(OSPLAT) = X86 { Library libfitzdraw : archx86.c ; } + |