diff options
| author | Tim Redfern <tim@eclectronics.org> | 2012-08-09 20:14:02 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@eclectronics.org> | 2012-08-09 20:14:02 +0100 |
| commit | b3548f90171f0be1ebfd7020f38f3d0acec65f8b (patch) | |
| tree | 76698256f9cf4edb797f7996e36edc8e4bf92f83 /liveengine/config.make | |
initial commit
Diffstat (limited to 'liveengine/config.make')
| -rw-r--r-- | liveengine/config.make | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/liveengine/config.make b/liveengine/config.make new file mode 100644 index 0000000..a444a20 --- /dev/null +++ b/liveengine/config.make @@ -0,0 +1,34 @@ +# 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-061812 + + +# 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_LD_FLAGS = libs/libawesomelib.a + +USER_LDFLAGS = + + +# use this to add system libraries for example: +# USER_LIBS = -lpango + +USER_LIBS = + + +# change this to add different compiler optimizations to your project + +USER_COMPILER_OPTIMIZATION = -march=native -mtune=native -Os + + +EXCLUDE_FROM_SOURCE="bin,.xcodeproj,obj" |
