srctree

Robin Linden parent 8c168b9e 51fc9159
deps: Add CTRE

inlinesplit
WORKSPACE added: 18, removed: 2, total 16
@@ -59,6 +59,14 @@ http_archive(
url = "https://github.com/google/boringssl/archive/3a3d0b5c7fddeea312b5ce032d9b84a2be399b32.tar.gz",
)
 
http_archive(
name = "ctre", # Apache-2.0
build_file = "//third_party:ctre.BUILD",
sha256 = "d00d7eaa0e22f2fdaa947a532b81b6fc35880acf4887b50a5ac9bfb7411ced03",
strip_prefix = "compile-time-regular-expressions-3.7.1",
url = "https://github.com/hanickadot/compile-time-regular-expressions/archive/v3.7.1.tar.gz",
)
 
http_archive(
name = "fmt", # MIT
build_file = "//third_party:fmt.BUILD",
 
filename was Deleted added: 18, removed: 2, total 16
@@ -0,0 +1,8 @@
load("@rules_cc//cc:defs.bzl", "cc_library")
 
cc_library(
name = "ctre",
hdrs = glob(["include/**/*.hpp"]),
strip_include_prefix = "include",
visibility = ["//visibility:public"],
)