ISCE_INSAR/components/iscesys/StdOEL/include/SConscript

22 lines
800 B
Python
Raw Normal View History

2019-01-16 19:40:08 +00:00
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# Giangi Sacco
# NASA Jet Propulsion Laboratory
# California Institute of Technology
# (C) 2009 All Rights Reserved
#
#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#!/usr/bin/env python
import os
Import('envStdOEL')
package = envStdOEL['PACKAGE']
project = envStdOEL['PROJECT']
build = envStdOEL['PRJ_SCONS_BUILD'] + '/' + package + '/' + project + '/include'
envStdOEL.AppendUnique(CPPPATH = [build])
listFiles = ['StdOEL.h','StdOELF.h','StdOELFFortTrans.h','BaseWriter.h','FileWriter.h','ScreenWriter.h','WriterFactory.h','StdOELmodule.h']
envStdOEL.Install(build,listFiles)
envStdOEL.Alias('build',build)