summaryrefslogtreecommitdiff
path: root/config.make
blob: 416112e9c4a761f41bd5b51a8b660346a0617dc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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


# USER_CFLAGS allows to pass custom flags to the compiler
# for example search paths like:
# USER_CFLAGS = -I src/objects

USER_CFLAGS = -I ../openFrameworks/addons -I ../openFrameworks/addons/ofxAvahiCore/libs/avahi/include


# USER_LDFLAGS allows to pass custom flags to the linker
# for example libraries like:
# USER_LD_FLAGS = libs/libawesomelib.a

USER_LDFLAGS = ../openFrameworks/addons/ofxOpenCv/libs/opencv/lib/linux64/libopencv_legacy.a


# use this to add system libraries for example:
# USER_LIBS = -lpango

USER_LIBS = -lavahi-core -lavahi-client


# change this to add different compiler optimizations to your project

USER_COMPILER_OPTIMIZATION = -march=native -mtune=native -Os


EXCLUDE_FROM_SOURCE="bin,.xcodeproj,obj"