summaryrefslogtreecommitdiff
path: root/plot/osx/Jamfile
diff options
context:
space:
mode:
Diffstat (limited to 'plot/osx/Jamfile')
-rw-r--r--plot/osx/Jamfile21
1 files changed, 21 insertions, 0 deletions
diff --git a/plot/osx/Jamfile b/plot/osx/Jamfile
new file mode 100644
index 0000000..933d56d
--- /dev/null
+++ b/plot/osx/Jamfile
@@ -0,0 +1,21 @@
+
+# Jamfile for OS X window code development
+
+#PREF_CCFLAGS = $(CCOPTFLAG) ; # Turn optimisation on
+PREF_CCFLAGS = $(CCDEBUGFLAG) ; # Debugging flags
+#PREF_CCFLAGS += -x objective-c ;
+PREF_LINKFLAGS = $(LINKDEBUGFLAG) ;
+
+# Hello world
+#Main hello : hello.m ;
+
+# Hello world window in C
+Main helloc : helloc.c ;
+
+# Hello world window in Objective-C
+ObjectCcFlags hellom : -ObjC ;
+Main hellom : hellom.m ;
+
+#GuiBin tt ;
+#Main tt : tt.m ;
+