# -*- mode: python; -*- 

# dice.motors.mcapi module
# Authors: L. Le Guillou

APPNAME = 'dice.motors.mcapi'
VERSION = '0.1'
top = '.'
build = 'build'

def options(opt):
    opt.load('python')        
    opt.load('compiler_c')

def configure(conf):
    conf.load('python')
    conf.load('compiler_c')
    conf.check_python_headers()
    
def build(bld):
    bld.recurse(['lib', 
                 'src',
                 'server'])

    
