Changeset 3546 for anuga_core/source/anuga/pyvolution/SConscript
- Timestamp:
- Sep 7, 2006, 3:21:16 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
anuga_core/source/anuga/pyvolution/SConscript
r3523 r3546 1 import os 1 2 Import('env') 2 3 env2 = env.Copy() 3 4 env2.Append(CPPPATH=['#anuga_core/source/anuga/utilities']) 4 5 5 env2.SharedLibrary('quantity_ext', ['quantity_ext.c']) 6 env2.SharedLibrary('shallow_water_ext', ['shallow_water_ext.c']) 7 env2.SharedLibrary('shallow_water_kinetic', ['shallow_water_kinetic_ext.c']) 6 instdir = os.path.join(env['PREFIX'], 'anuga', 'pyvolution') 7 env.Install(instdir, env2.SharedLibrary('quantity_ext', ['quantity_ext.c'])) 8 env.Install(instdir, env2.SharedLibrary('shallow_water_ext', ['shallow_water_ext.c'])) 9 env.Install(instdir, env2.SharedLibrary('shallow_water_kinetic', ['shallow_water_kinetic_ext.c']))
Note: See TracChangeset
for help on using the changeset viewer.