Skip to content

Commit

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

if (NOT TARGET fmt::fmt-header-only)
if (NOT TARGET fmt::fmt)
find_package(fmt QUIET)

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

set (umpire_event_depends fmt::fmt-header-only umpire_tpl_json camp)
set (umpire_event_depends fmt::fmt umpire_tpl_json camp)

if (UMPIRE_ENABLE_CUDA)
set(umpire_event_depends
Expand Down
2 changes: 1 addition & 1 deletion src/umpire/resource/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# SPDX-License-Identifier: (MIT)
##############################################################################

set(umpire_resource_depends umpire_util camp fmt::fmt-header-only)
set(umpire_resource_depends umpire_util camp fmt::fmt)

set (umpire_resource_headers
DefaultMemoryResource.hpp
Expand Down
2 changes: 1 addition & 1 deletion src/umpire/util/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ if (UMPIRE_ENABLE_NUMA)
numa.cpp)
endif ()

set (umpire_util_depends camp umpire_event umpire_tpl_judy fmt::fmt-header-only)
set (umpire_util_depends camp umpire_event umpire_tpl_judy fmt::fmt)

if (NOT "${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
set (umpire_util_depends
Expand Down

0 comments on commit 6db05c0

Please sign in to comment.