diff options
| author | Tim Redfern <tim@herge.(none)> | 2013-05-20 09:31:12 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@herge.(none)> | 2013-05-20 09:31:12 +0100 |
| commit | 35238aa2953051ec0de131af06730b883fe6483c (patch) | |
| tree | bc39475e0b4ac71ed3c31e28c7d48c6d8b86daf5 /03_play | |
| parent | 54e7a97044d3dcefc82c2b0ef929f0eb5b2cd76c (diff) | |
some reorganisation
Diffstat (limited to '03_play')
| -rwxr-xr-x | 03_play/Makefile | 2 | ||||
| -rw-r--r-- | 03_play/addons.make | 5 | ||||
| -rwxr-xr-x | 03_play/config.make | 56 |
3 files changed, 63 insertions, 0 deletions
diff --git a/03_play/Makefile b/03_play/Makefile new file mode 100755 index 0000000..2d83a77 --- /dev/null +++ b/03_play/Makefile @@ -0,0 +1,2 @@ +include config.make +include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/Makefile.examples diff --git a/03_play/addons.make b/03_play/addons.make new file mode 100644 index 0000000..0b4df47 --- /dev/null +++ b/03_play/addons.make @@ -0,0 +1,5 @@ +ofxOpenNI +ofxFenster +ofxGui +ofxXmlSettings +ofxMayaCam diff --git a/03_play/config.make b/03_play/config.make new file mode 100755 index 0000000..821a73a --- /dev/null +++ b/03_play/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 = ../../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 + + + |
