summaryrefslogtreecommitdiff
path: root/liveengineUnmapped/ofxSVGTiny/example/config.make
diff options
context:
space:
mode:
authortim <tim@gray.(none)>2014-04-18 09:28:31 +0100
committertim <tim@gray.(none)>2014-04-18 09:28:31 +0100
commitba9af7648a79b54836019ca792e40e81ca863c86 (patch)
tree10cf27eca307caabcd45cdab53067cded31961f8 /liveengineUnmapped/ofxSVGTiny/example/config.make
parent9d46e74d0f6e9c240bb5f0597ff75b5415a4a5a1 (diff)
good to go
Diffstat (limited to 'liveengineUnmapped/ofxSVGTiny/example/config.make')
-rw-r--r--liveengineUnmapped/ofxSVGTiny/example/config.make56
1 files changed, 56 insertions, 0 deletions
diff --git a/liveengineUnmapped/ofxSVGTiny/example/config.make b/liveengineUnmapped/ofxSVGTiny/example/config.make
new file mode 100644
index 0000000..9eec157
--- /dev/null
+++ b/liveengineUnmapped/ofxSVGTiny/example/config.make
@@ -0,0 +1,56 @@
+# add custom variables to this file
+
+# OF_ROOT allows to move projects outside apps/* just set this variable to the
+# absoulte path to the OF root folder
+
+OF_ROOT = ../../..
+
+
+# USER_CFLAGS allows to pass custom flags to the compiler
+# for example search paths like:
+# USER_CFLAGS = -I src/objects
+
+USER_CFLAGS =
+
+
+# USER_LDFLAGS allows to pass custom flags to the linker
+# for example libraries like:
+# USER_LDFLAGS = libs/libawesomelib.a
+
+USER_LDFLAGS =
+
+
+EXCLUDE_FROM_SOURCE="bin,.xcodeproj,obj"
+
+# change this to add different compiler optimizations to your project
+
+USER_COMPILER_OPTIMIZATION = -march=native -mtune=native -Os
+
+
+# android specific, in case you want to use different optimizations
+USER_LIBS_ARM =
+USER_LIBS_ARM7 =
+USER_LIBS_NEON =
+
+# android optimizations
+
+ANDROID_COMPILER_OPTIMIZATION = -Os
+
+NDK_PLATFORM = android-8
+
+# uncomment this for custom application name (if the folder name is different than the application name)
+#APPNAME = folderName
+
+# uncomment this for custom package name, must be the same as the java package that contains OFActivity
+#PKGNAME = cc.openframeworks.$(APPNAME)
+
+
+
+
+
+# linux arm flags
+
+LINUX_ARM7_COMPILER_OPTIMIZATIONS = -march=armv7-a -mtune=cortex-a8 -finline-functions -funroll-all-loops -O3 -funsafe-math-optimizations -mfpu=neon -ftree-vectorize -mfloat-abi=hard -mfpu=vfp
+
+
+