summaryrefslogtreecommitdiff
path: root/TRRSS_01_rec/config.make
diff options
context:
space:
mode:
authorComment <tim@gray.(none)>2013-04-30 22:29:33 +0100
committerComment <tim@gray.(none)>2013-04-30 22:29:33 +0100
commitb5115001759f0d3bf841a410cfe1881d4954a92b (patch)
tree8cfa327ee49f35bf3840f50b39023467a0ba12bc /TRRSS_01_rec/config.make
parent525683335ee53c39f8b80ae089b96b3357e776cd (diff)
good for recording session
Diffstat (limited to 'TRRSS_01_rec/config.make')
-rwxr-xr-xTRRSS_01_rec/config.make56
1 files changed, 0 insertions, 56 deletions
diff --git a/TRRSS_01_rec/config.make b/TRRSS_01_rec/config.make
deleted file mode 100755
index 821a73a..0000000
--- a/TRRSS_01_rec/config.make
+++ /dev/null
@@ -1,56 +0,0 @@
-# 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 = ../../openFrameworks
-
-
-# USER_CFLAGS allows to pass custom flags to the compiler
-# for example search paths like:
-# USER_CFLAGS = -I src/objects
-
-USER_CFLAGS = -I $(OF_ROOT)/addons/ofxOpenNI/include/openni -I $(OF_ROOT)/addons/ofxOpenNI/include/nite -I $(OF_ROOT)/addons/ofxOpenNI/src
-
-
-# USER_LDFLAGS allows to pass custom flags to the linker
-# for example libraries like:
-# USER_LDFLAGS = libs/libawesomelib.a
-
-USER_LDFLAGS = -lOpenNI
-
-
-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
-
-
-