view nodejs/wscript @ 651:aa52883534fc

Code generated by generator can be built
author Thinker K.F. Li <thinker@branda.to>
date Sat, 31 Jul 2010 13:28:48 +0800
parents 683889344459
children 90c7726bc953
line wrap: on
line source

srcdir = '.'
blddir = 'build'
VERSION = '0.0.1'

def set_options(opt):
    opt.tool_options('compiler_cxx')
    opt.tool_options('compiler_cc')
    pass

def configure(conf):
    import Options
    import os
    
    conf.check_tool('compiler_cxx')
    conf.check_tool('compiler_cc')
    conf.check_tool('node_addon')
    conf.env.SRCDIR = Options.options.srcdir
    conf.env.TOP_BUILDDIR = os.environ['TOP_BUILDDIR']
    pass

def build(conf):
    import Utils
    
    conf(rule='m4 -I ${SRCDIR}/../tools gen_v8_binding.m4 ${SRC} > ${TGT}',
         source='observer.m4', target='observer-inc.h',
         name='observer-inc', shell=True, always=True, before=['cxx'])

    obj = conf.new_task_gen('cxx', 'shlib', 'node_addon')
    obj.target = 'mbfly'
    obj.source = 'mbfly_njs.cc coord.cc shapes.cc paints.cc font.cc ' + \
	'image_ldr.cc'
    obj.add_objects = 'X_supp_njs.o observer.o'
    obj.staticlib = 'mbfly'

    obj = conf.new_task_gen('cc', 'shlib', 'node_addon')
    obj.target = 'X_supp_njs.o'
    obj.source = 'X_supp_njs.c'
    
    obj = conf.new_task_gen('cxx', 'shlib', 'node_addon')
    obj.target = 'observer.o'
    obj.source = 'observer.cc'
    obj.includes = '.'
    pass