Parent Directory | Revision Log
Dependencies of shared libraries on 'libascend'.
1 | Import('env') |
2 | |
3 | solver_env = env.Copy() |
4 | |
5 | if solver_env.get('WITH_TRON'): |
6 | solver_env.AppendUnique(CPPPATH=[solver_env.get('TRON_CPPPATH')]) |
7 | |
8 | libtron = solver_env.SharedLibrary("tron",["asc_tron.c"] |
9 | ,LIBS = ['ascend'] |
10 | ,LIBPATH = ['#'] |
11 | ) |
12 | |
13 | env.Depends(libtron,env['libascend']) |
14 | |
15 | env['extfns'] += [libtron] |
16 | |
17 | # vim: set syntax=python: |
john.pye@anu.edu.au | ViewVC Help |
Powered by ViewVC 1.1.22 |