Parent Directory
|
Revision Log
Added a necessary export symbol in extcall for used by bboxtest. Broke apart Ben's z-bbox test suite and added it to the Python tests.
| 1 | Import('env') |
| 2 | extfn_env = env.Copy() |
| 3 | |
| 4 | srcs = Split(""" |
| 5 | bboxtest.c |
| 6 | """) |
| 7 | |
| 8 | extfn_env.Append(LIBPATH=['#']) |
| 9 | extfn_env.Append(LIBS=['ascend']) |
| 10 | |
| 11 | targets = [] |
| 12 | targets.append( extfn_env.SharedLibrary("bboxtest",srcs) ) |
| 13 | |
| 14 | # Return the targs |
| 15 | env['extfns'] += targets |
| 16 | |
| 17 | # vim: set syntax=python: |
| 18 |
| john.pye@anu.edu.au | ViewVC Help |
| Powered by ViewVC 1.1.22 |