|
|
| 246 |
# Set the libraries this module depends on. |
246 |
# Set the libraries this module depends on. |
| 247 |
module.module_deps = list(dependencies) |
247 |
module.module_deps = list(dependencies) |
| 248 |
|
248 |
|
| 249 |
module.install_path = "${LIBDIR}" |
249 |
if bld.is_install: |
|
|
250 |
module.install_path = "${LIBDIR}" |
| 250 |
|
251 |
|
| 251 |
return module |
252 |
return module |
| 252 |
|
253 |
|
|
|
| 400 |
pass |
401 |
pass |
| 401 |
pymod.env['CXXDEFINES'] = defines |
402 |
pymod.env['CXXDEFINES'] = defines |
| 402 |
pymod.includes = 'bindings' |
403 |
pymod.includes = 'bindings' |
| 403 |
pymod.install_path = '${PYTHONDIR}/ns' |
404 |
if bld.is_install: |
|
|
405 |
pymod.install_path = '${PYTHONDIR}/ns' |
| 404 |
return pymod |
406 |
return pymod |
| 405 |
|
407 |
|
| 406 |
|
408 |
|