actually install the python sources

This commit is contained in:
Gustavo J. A. M. Carneiro
2007-06-01 11:19:43 +01:00
parent 4063226a29
commit c03dececed
2 changed files with 13 additions and 0 deletions
+12
View File
@@ -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'
+1
View File
@@ -42,5 +42,6 @@ def build(bld):
if Params.g_commands['check']:
bld.add_subdirs('tests')
bld.add_subdirs('examples')
bld.add_subdirs('pybindgen')