From bfa5a66ed3140f876f27fb3e9cd428e37bffa60b Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Tue, 23 Jul 2019 12:12:29 -0400 Subject: [PATCH] [SCons] Remove fmt from linking We use the header-only version of fmt now, so no need to link to the compiled library. --- src/SConscript | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/SConscript b/src/SConscript index 94845a27e..f179246cd 100644 --- a/src/SConscript +++ b/src/SConscript @@ -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'])