Skip to content

Commit

Permalink
Remove CMake fmt find_package option (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
amues authored Jul 12, 2024
1 parent 4b413f7 commit e136656
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,7 @@ find_package(Threads REQUIRED)
find_package(concurrentqueue REQUIRED)

find_package(GTest)
find_package(fmt CONFIG)
if (NOT fmt_FOUND)
message(STATUS "Unable to find fmt using config-module. Attempting again using built-in find-module.")
find_package(fmt MODULE)
if (NOT fmt_FOUND)
message(STATUS "Unable to find fmt using built-in find-module.")
endif()
endif()
find_package(fmt)
find_package(benchmark)

add_subdirectory(src)
Expand Down

0 comments on commit e136656

Please sign in to comment.