11 lines
381 B
Python
11 lines
381 B
Python
#!/usr/bin/env python
|
|
import os
|
|
|
|
Import('envUnwrapComp')
|
|
install = envUnwrapComp['PRJ_LIB_DIR']
|
|
listFiles = ['RelaxIV/RelaxIV.C', 'RelaxIV/Main.C', 'relaxIVdriver.cpp']
|
|
envUnwrapComp.PrependUnique(CPPPATH=['./RelaxIV/', '../include'])
|
|
lib = envUnwrapComp.Library(target = 'MCFSolve.a', source = listFiles)
|
|
envUnwrapComp.Install(install,lib)
|
|
envUnwrapComp.Alias('install',install)
|