#! /usr/bin/env python
## This script is a quick test to demonstrate (and test) 
## the bksys moc handling '#include "file.moc"' can be added .. or not
##
## Thomas Nagy, 2005
## This file can be reused freely for any project (see COPYING)

Import( 'env' )

obj=env.qt4obj('staticlib', env)
obj.target='libjackmix_mixingmatrix'
obj.source='\
	mixingmatrix.cpp \
'
#obj.libpaths="../backend ../libgui"
obj.libs="QtCore"
obj.includes='#/ ./ ../libcore ../libgui'
obj.execute()

