21 lines
527 B
Python
21 lines
527 B
Python
#!/usr/bin/env python
|
|
import os
|
|
|
|
Import('enviscelib')
|
|
package = enviscelib['PACKAGE'] # 'library'
|
|
project = enviscelib['PROJECT'] # 'isceLib'
|
|
|
|
include = os.path.join(enviscelib['PRJ_SCONS_BUILD'],package,project,'include')
|
|
enviscelib.AppendUnique(CPPPATH=[include])
|
|
listFiles=['Ellipsoid.h',
|
|
'isceLibConstants.h',
|
|
'LinAlg.h',
|
|
'Orbit.h',
|
|
'Peg.h',
|
|
'Pegtrans.h',
|
|
'Poly1d.h',
|
|
'Poly2d.h',
|
|
'Position.h']
|
|
|
|
enviscelib.Install(include, listFiles)
|