]> rtime.felk.cvut.cz Git - eurobot/public.git/blob - src/camera/barcol/Makefile.omk
Make compilation of barcol and barcam conditional
[eurobot/public.git] / src / camera / barcol / Makefile.omk
1 # -*- makefile -*-
2
3 default_CONFIG = CONFIG_BARCOL=y
4
5 ifeq ($(CONFIG_BARCOL),y)
6
7 # If OpenCV is installed in /usr/local
8 INCLUDES += -I /usr/local/include
9 LDFLAGS += -L /usr/local/lib
10
11 bin_PROGRAMS = barcol
12
13 barcol_SOURCES = barcol.cxx
14 barcol_LIBS = robodim pthread roboorte robottype orte cv highgui cxcore rt z jpeg
15
16 endif