Explicitly build fmt as static lib

This commit is contained in:
Jon Evans 2022-08-31 09:03:26 -04:00
parent f679400e91
commit c98ad7218a
1 changed files with 1 additions and 1 deletions

View File

@ -228,7 +228,7 @@ else()
set(FMT_SOURCES src/format.cc)
endif ()
add_library(fmt ${FMT_SOURCES} ${FMT_HEADERS} README.rst ChangeLog.rst)
add_library(fmt STATIC ${FMT_SOURCES} ${FMT_HEADERS} README.rst ChangeLog.rst)
add_library(fmt::fmt ALIAS fmt)
if (FMT_WERROR)