summaryrefslogtreecommitdiff
path: root/Jamfile
diff options
context:
space:
mode:
authorRaph Levien <raph@levien.com>2005-01-09 07:29:59 +0100
committerRaph Levien <raph@levien.com>2005-01-09 07:29:59 +0100
commitfb12e1716d653cce57b7b6acfa16c44c748969b4 (patch)
tree683fd016c6587daa00a1dd55622be4bf50c4241a /Jamfile
parent72976993f5b39d9ee1599dc89961288b297cdc62 (diff)
downloadmupdf-fb12e1716d653cce57b7b6acfa16c44c748969b4.tar.xz
created macpdf app
Diffstat (limited to 'Jamfile')
-rw-r--r--Jamfile11
1 files changed, 9 insertions, 2 deletions
diff --git a/Jamfile b/Jamfile
index 699e9a3e..d621a819 100644
--- a/Jamfile
+++ b/Jamfile
@@ -209,12 +209,18 @@ Main pdfdebug : test/pdfdebug.c ;
# Main pdfrip : test/pdfrip.c ;
# Main pdffunction : test/pdffunction.c ;
-Main x11pdf : test/x11pdf.c test/ximage.c ;
+# Main x11pdf : test/x11pdf.c test/ximage.c ;
+
+Main carbonpdf : macpdf/carbonpdf.c macpdf/view.c ;
+File macpdf/carbonpdf.app/Contents/MacOS/carbonpdf : carbonpdf ;
+MODE on macpdf/carbonpdf.app/Contents/MacOS/carbonpdf = 755 ;
CCFLAGS += `pkg-config --cflags gtk+ gthread` ;
LINKLIBS on gtkpdf = $(LINKLIBS) `pkg-config --libs gtk+ gmodule gthread` ;
-Main gtkpdf : test/gtkpdf.c ;
+LINKLIBS on carbonpdf = $(LINKLIBS) -framework Carbon ;
+
+# Main gtkpdf : test/gtkpdf.c ;
LinkLibraries
pdfclean
@@ -223,6 +229,7 @@ LinkLibraries
pdfrip
pdffunction
x11pdf
+ carbonpdf
gtkpdf
: libmupdf libfonts libfitz ;