Fix dependency problem with matlab library
Building in parallel would error out because the macOS Matlab library was relying on the static Cantera library before that was finished.
This commit is contained in:
parent
2f03a1e531
commit
831239633d
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ ctmethods = build(localenv.SharedLibrary('#interfaces/matlab/toolbox/ctmethods',
|
|||
SHLIBSUFFIX=mexSuffix,
|
||||
LIBS=linklibs))
|
||||
|
||||
if localenv['OS'] in ('Windows', 'Darwin'):
|
||||
if localenv['OS'] in ('Windows'):
|
||||
localenv.Depends(ctmethods, localenv['cantera_shlib'])
|
||||
else:
|
||||
localenv.Depends(ctmethods, localenv['cantera_staticlib'])
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue