[SCons] Remove fmt from linking

We use the header-only version of fmt now, so no need to link to the
compiled library.
This commit is contained in:
Bryan W. Weber 2019-07-23 12:12:29 -04:00 committed by Ray Speth
parent c0f019407e
commit bfa5a66ed3

View file

@ -84,8 +84,6 @@ if (localenv['system_sundials'] == 'y'):
if localenv['blas_lapack_libs']:
localenv.Append(LIBS=localenv['blas_lapack_libs'],
LIBPATH=localenv['blas_lapack_dir'])
if localenv['system_fmt']:
localenv.Append(LIBS='fmt')
if localenv['system_yamlcpp']:
localenv.Append(LIBS=['yaml-cpp'])