#!/usr/bin/env python


def configure(conf):
	pass


def build(bld):
	bld(
		features = ['c', 'cshlib'],
		includes = ['.', '../..'],
		uselib = bld.env['COMMON_USELIB'],
		use = 'gstimxcommon',
		target = 'gstimxv4l2src',
		source = bld.path.ant_glob('*.c'),
		install_path = bld.env['PLUGIN_INSTALL_PATH']
	)

