Parent Directory | Revision Log
New external library naming scheme on Windows: 'name_ascend.dll' instead of 'name.dll'. This applies to solvers as well as external methods, extpy, import handlers, etc.
1 | Import('env') |
2 | |
3 | # To run the test, type |
4 | # ascdev johnpye/dopri5/dopri5.a4c |
5 | |
6 | dopri5obj = env.SharedObject("dopri5.c") |
7 | |
8 | lib = env.SharedLibrary("dopri5",["asc_dopri5.c",dopri5obj] |
9 | ,LIBS = ['ascend'] |
10 | ,LIBPATH = ['#'] |
11 | ,SHLIBSUFFIX = env['EXTLIB_SUFFIX'] |
12 | ,SHLIBPREFIX = env['EXTLIB_PREFIX'] |
13 | ) |
14 | |
15 | env['extfns'] += [lib] |
16 | |
17 | # vim: set syntax=python: |
john.pye@anu.edu.au | ViewVC Help |
Powered by ViewVC 1.1.22 |