2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 09:57:15 +01:00
This commit is contained in:
Thomas Nagy 2015-03-05 19:49:57 +01:00
parent ff2ab4076f
commit 82743d7966
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64

View File

@ -74,9 +74,10 @@ def build(bld):
vnum = '1.2.3',
use = 'mylib')
bld.add_group()
python_site_package = '${PREFIX}/lib/python%s/site-packages' % bld.env.PYTHON_VERSION
bld.install_files(python_site_package, 'extend/python/test_swig_waf.py')
bld.install_files(python_site_package, 'embed/swigdemo.py')
bld.install_files(python_site_package, bld.path.find_or_declare('extend/python/test_swig_waf.py'))
bld.install_files(python_site_package, bld.path.find_or_declare('embed/swigdemo.py'))
bld.add_post_fun(exec_test_python)