12 lines
237 B
Plaintext
12 lines
237 B
Plaintext
load("@rules_cc//cc:defs.bzl", "cc_library")
|
|
|
|
cc_library(
|
|
name = "glm",
|
|
hdrs = glob([
|
|
"glm/*.hpp",
|
|
"glm/**/*.hpp",
|
|
]),
|
|
includes = ["glm"],
|
|
textual_hdrs = glob(["glm/**/*.inl"]),
|
|
visibility = ["//visibility:public"],
|
|
) |