-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMODULE.bazel
More file actions
37 lines (30 loc) · 971 Bytes
/
MODULE.bazel
File metadata and controls
37 lines (30 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
"""
A C++17 port of the JavaScript pixelmatch library, providing a small pixel-level image comparison library.
To use, add the following to your MODULE.bazel file:
```
bazel_dep(name = "pixelmatch-cpp17", version = "1.0.0")
git_override(
module_name = "pixelmatch-cpp17",
remote = "https://github.com/jwmcglynn/pixematch-cpp17",
)
```
"""
module(name = "pixelmatch-cpp17", repo_name = "pixelmatch-cpp17", version = "1.0.1")
new_local_repository = use_repo_rule("@bazel_tools//tools/build_defs/repo:local.bzl", "new_local_repository")
#
# Build dependencies
#
bazel_dep(name = "rules_cc", version = "0.1.1")
#
# Test dependencies
#
bazel_dep(name = "googletest", repo_name = "com_google_gtest", version = "1.17.0", dev_dependency = True)
new_local_repository(
name = "stb",
build_file = "//third_party:BUILD.stb",
path = "third_party/stb",
)
#
# Fuzzing dependencies
#
bazel_dep(name = "rules_fuzzing", version = "0.5.2", dev_dependency = True)