From c03dececed5f8d87a39fb5a54742eae71d95ecb3 Mon Sep 17 00:00:00 2001 From: "Gustavo J. A. M. Carneiro" Date: Fri, 1 Jun 2007 11:19:43 +0100 Subject: [PATCH] actually install the python sources --- pybindgen/wscript | 12 ++++++++++++ wscript | 1 + 2 files changed, 13 insertions(+) create mode 100644 pybindgen/wscript 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')