srctree

Johan parent 472e32cd e918b3bf b57fe2f1
Merge pull request #335 from johnor/update-fmtlib

Update fmtlib to 8.0.1
WORKSPACE added: 11, removed: 9, total 2
@@ -14,7 +14,7 @@ git_repository(
new_git_repository(
name = "fmtlib",
remote = "https://github.com/fmtlib/fmt",
commit = "4fe0b11195b7cd71f39253c44db2c9dddf6b82d4",
commit = "d141cdbeb0fb422a3fb7173b285fd38e0d1772dc",
build_file = "@nes//third_party:BUILD.fmtlib",
shallow_since = "1603647862 -0700",
shallow_since = "1625267673 -0700",
)
 
third_party/BUILD.fmtlib added: 11, removed: 9, total 2
@@ -1,8 +1,10 @@
cc_library(
name = "fmtlib",
srcs = glob([
"src/**",
]),
srcs = [
# "src/fmt.cc", # No C++ module support
"src/format.cc",
"src/os.cc",
],
hdrs = glob([
"include/**",
]),
 
third_party/fmt/CMakeLists.txt added: 11, removed: 9, total 2
@@ -3,7 +3,7 @@ include(FetchContent)
FetchContent_Declare(
fmt
GIT_REPOSITORY https://github.com/fmtlib/fmt
GIT_TAG 4fe0b11195b7cd71f39253c44db2c9dddf6b82d4 # 7.1.0
GIT_TAG d141cdbeb0fb422a3fb7173b285fd38e0d1772dc # 8.0.1
)
 
FetchContent_MakeAvailable(fmt)