From 9ce0780eeaccd90794fc9a9c05e5ffe10c1a216a Mon Sep 17 00:00:00 2001 From: Comment Date: Thu, 27 Dec 2012 00:09:46 +0000 Subject: linux project --- Makefile | 2 + config.make | 56 +++++++++++ fensterTextEditor.cbp | 240 ++++++++++++++++++++++++++++++++++++++++++++ fensterTextEditor.layout | 10 ++ fensterTextEditor.workspace | 9 ++ 5 files changed, 317 insertions(+) create mode 100755 Makefile create mode 100755 config.make create mode 100755 fensterTextEditor.cbp create mode 100644 fensterTextEditor.layout create mode 100755 fensterTextEditor.workspace diff --git a/Makefile b/Makefile new file mode 100755 index 0000000..2d83a77 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +include config.make +include $(OF_ROOT)/libs/openFrameworksCompiled/project/makefileCommon/Makefile.examples diff --git a/config.make b/config.make new file mode 100755 index 0000000..f92cefa --- /dev/null +++ b/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 = + + +# 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 + + + diff --git a/fensterTextEditor.cbp b/fensterTextEditor.cbp new file mode 100755 index 0000000..ab9e348 --- /dev/null +++ b/fensterTextEditor.cbp @@ -0,0 +1,240 @@ + + + + + + diff --git a/fensterTextEditor.layout b/fensterTextEditor.layout new file mode 100644 index 0000000..9064323 --- /dev/null +++ b/fensterTextEditor.layout @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/fensterTextEditor.workspace b/fensterTextEditor.workspace new file mode 100755 index 0000000..cbd963a --- /dev/null +++ b/fensterTextEditor.workspace @@ -0,0 +1,9 @@ + + + + + + + + + -- cgit v1.2.3