Skip to content

Commit

Permalink
Change used {fmt} version fixing a performance regression.
Browse files Browse the repository at this point in the history
  • Loading branch information
breyerml committed Oct 23, 2023
1 parent fb18528 commit 8284f0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -237,12 +237,12 @@ else ()
endif ()

## try finding fmt
find_package(fmt 10.0.0 QUIET)
find_package(fmt 10.1.1 QUIET)
if (fmt_FOUND)
message(STATUS "Found package fmt.")
else ()
message(STATUS "Couldn't find package fmt. Building from source ...")
set(PLSSVM_fmt_VERSION 10.0.0)
message(STATUS "Couldn't find package fmt. Building from source ...") # TODO: change to next release; bug fix commit
set(PLSSVM_fmt_VERSION d9063baf227882da0f48c761abcbb08247eb1296)
# fetch string formatting library fmt
FetchContent_Declare(fmt
GIT_REPOSITORY https://github.com/fmtlib/fmt.git
Expand Down

0 comments on commit 8284f0e

Please sign in to comment.