diff --git a/pybindgen/wscript b/pybindgen/wscript new file mode 100644 index 0000000..a4920c8 --- /dev/null +++ b/pybindgen/wscript @@ -0,0 +1,12 @@ +## -*- python -*- + +def build(bld): + + obj = bld.create_obj('py') + obj.find_sources_in_dirs('.') + obj.inst_dir = 'pybindgen' + + obj = bld.create_obj('py') + obj.find_sources_in_dirs('typehandlers') + obj.inst_dir = 'pybindgen/typehandlers' + diff --git a/wscript b/wscript index 230212f..86e2937 100644 --- a/wscript +++ b/wscript @@ -42,5 +42,6 @@ def build(bld): if Params.g_commands['check']: bld.add_subdirs('tests') bld.add_subdirs('examples') + bld.add_subdirs('pybindgen')