Skip to content

Commit db0d286

Browse files
authored
1 parent 35b6a60 commit db0d286

File tree

6 files changed

+54
-5
lines changed

6 files changed

+54
-5
lines changed

modules/glm/1.0.1/MODULE.bazel

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module(
2+
name = "glm",
3+
version = "1.0.1",
4+
bazel_compatibility = [">=7.2.1"],
5+
)
6+
7+
bazel_dep(name = "rules_cc", version = "0.1.1")

modules/glm/1.0.1/overlay/BUILD.bazel

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
cc_library(
2+
name = "glm",
3+
hdrs = glob([
4+
"glm/*.hpp",
5+
"glm/ext/*.hpp",
6+
"glm/gtc/*.hpp",
7+
"glm/gtx/*.hpp",
8+
"glm/simd/*.h",
9+
]),
10+
srcs = glob([
11+
"glm/detail/*.hpp",
12+
"glm/**/*.inl",
13+
]),
14+
includes = ["."],
15+
visibility = ["//visibility:public"],
16+
)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../MODULE.bazel

modules/glm/1.0.1/presubmit.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
matrix:
2+
bazel: [7.x, 8.x, rolling]
3+
platform:
4+
- ubuntu2204
5+
- ubuntu2404
6+
- macos
7+
- macos_arm64
8+
- windows
9+
tasks:
10+
verify_targets:
11+
name: Verify build targets
12+
platform: ${{ platform }}
13+
bazel: ${{ bazel }}
14+
build_targets:
15+
- '@glm//:glm'

modules/glm/1.0.1/source.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"integrity": "sha256-mpld5NoJcjvTPvGU5reYGJUOWo8uFUeS8C5GFSd8+40=",
3+
"patch_strip": 0,
4+
"url": "https://github.com/g-truc/glm/releases/download/1.0.1/glm-1.0.1-light.zip",
5+
"overlay": {
6+
"BUILD.bazel": "sha256-DLe4A9v9N/hRyB28pJ/zTDEE6M5xfGZjnj0efoOfo68=",
7+
"MODULE.bazel": "sha256-mibnvqf9Rv81DLZxJdGeoftKr9rQe5HnvE2ByxJCXkg="
8+
}
9+
}

modules/glm/metadata.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
{
55
"email": "[email protected]",
66
"github": "Vertexwahn",
7-
"name": "Julian Amann",
8-
"github_user_id": 3775001
7+
"github_user_id": 3775001,
8+
"name": "Julian Amann"
99
},
1010
{
1111
"github": "phaedon",
12-
"name": "Phaedon (F\u00e6don) Sinis",
13-
"github_user_id": 1106027
12+
"github_user_id": 1106027,
13+
"name": "Phaedon (F\u00e6don) Sinis"
1414
}
1515
],
1616
"repository": [
@@ -20,7 +20,8 @@
2020
"0.9.9.8",
2121
"0.9.9.8.bcr.1",
2222
"1.0.0",
23-
"1.0.0.bcr.1"
23+
"1.0.0.bcr.1",
24+
"1.0.1"
2425
],
2526
"yanked_versions": {}
2627
}

0 commit comments

Comments
 (0)