Skip to content

Commit

Permalink
Specify fmt version required
Browse files Browse the repository at this point in the history
  • Loading branch information
adayton1 committed Jul 18, 2023
1 parent 25826e5 commit 0692ba8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tpl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ if (NOT TARGET camp)
endif ()

if (NOT TARGET fmt::fmt)
find_package(fmt QUIET)
find_package(fmt 9.1...10 QUIET)

if (NOT fmt_FOUND)
set(FMT_INSTALL ON)
Expand Down
2 changes: 1 addition & 1 deletion src/tpl/umpire/fmt
Submodule fmt updated 65 files
+3 −2 .github/pull_request_template.md
+30 −0 .github/workflows/cifuzz.yml
+9 −1 .github/workflows/doc.yml
+30 −13 .github/workflows/linux.yml
+7 −2 .github/workflows/macos.yml
+11 −3 .github/workflows/windows.yml
+93 −39 CMakeLists.txt
+433 −1 ChangeLog.rst
+1 −1 LICENSE.rst
+21 −12 README.rst
+153 −121 doc/api.rst
+2 −3 doc/build.py
+134 −8 doc/syntax.rst
+477 −279 include/fmt/chrono.h
+14 −32 include/fmt/color.h
+8 −12 include/fmt/compile.h
+535 −907 include/fmt/core.h
+87 −129 include/fmt/format-inl.h
+947 −429 include/fmt/format.h
+40 −67 include/fmt/os.h
+19 −47 include/fmt/ostream.h
+93 −54 include/fmt/printf.h
+155 −145 include/fmt/ranges.h
+200 −22 include/fmt/std.h
+36 −6 include/fmt/xchar.h
+40 −23 src/fmt.cc
+1 −5 src/format.cc
+89 −60 src/os.cc
+3 −3 support/Vagrantfile
+0 −1 support/bazel/.bazelrc
+1 −1 support/bazel/.bazelversion
+2 −2 support/bazel/BUILD.bazel
+5 −4 support/bazel/README.md
+1 −1 support/build.gradle
+0 −54 support/cmake/cxx14.cmake
+15 −3 test/CMakeLists.txt
+1 −1 test/add-subdirectory-test/CMakeLists.txt
+1 −1 test/args-test.cc
+359 −23 test/chrono-test.cc
+2 −2 test/compile-error-test/CMakeLists.txt
+3 −2 test/compile-test.cc
+84 −230 test/core-test.cc
+2 −0 test/enforce-checks-test.cc
+1 −1 test/find-package-test/CMakeLists.txt
+27 −6 test/format-impl-test.cc
+262 −306 test/format-test.cc
+1 −1 test/fuzzing/CMakeLists.txt
+2 −0 test/gtest-extra-test.cc
+1 −6 test/gtest-extra.h
+1 −7 test/gtest/CMakeLists.txt
+1 −1 test/gtest/gmock-gtest-all.cc
+2 −2 test/mock-allocator.h
+36 −88 test/module-test.cc
+15 −56 test/os-test.cc
+16 −47 test/ostream-test.cc
+1 −7 test/posix-mock-test.cc
+0 −2 test/posix-mock.h
+4 −9 test/printf-test.cc
+108 −35 test/ranges-test.cc
+1 −1 test/scan-test.cc
+16 −11 test/scan.h
+1 −1 test/static-export-test/CMakeLists.txt
+158 −16 test/std-test.cc
+2 −6 test/util.h
+103 −43 test/xchar-test.cc

0 comments on commit 0692ba8

Please sign in to comment.