summaryrefslogtreecommitdiff
path: root/gui/Makefile
diff options
context:
space:
mode:
authorTim Redfern <tim@getdrop.com>2017-08-28 23:22:30 +0100
committerTim Redfern <tim@getdrop.com>2017-08-28 23:22:30 +0100
commit50d670c523ef4ee563ba961bd479b432516cefaf (patch)
treeed6d9ea45f84f2ad62b25dee7ad564d1c1a174b0 /gui/Makefile
parentd8a46a6409286b3834bc609e4f34a09d48a8ae58 (diff)
initial chainimageset
Diffstat (limited to 'gui/Makefile')
-rw-r--r--gui/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/gui/Makefile b/gui/Makefile
new file mode 100644
index 0000000..177e172
--- /dev/null
+++ b/gui/Makefile
@@ -0,0 +1,13 @@
+# Attempt to load a config.make file.
+# If none is found, project defaults in config.project.make will be used.
+ifneq ($(wildcard config.make),)
+ include config.make
+endif
+
+# make sure the the OF_ROOT location is defined
+ifndef OF_ROOT
+ OF_ROOT=$(realpath ../../..)
+endif
+
+# call the project makefile!
+include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/compile.project.mk