Skip to content

Commit

Permalink
Merge pull request #465 from NVIDIA/headers_fix
Browse files Browse the repository at this point in the history
chore(BUILD): Fix packaging of headers
  • Loading branch information
narendasan authored May 14, 2021
2 parents f60bf6c + 36c1c7e commit 730efdd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
5 changes: 4 additions & 1 deletion BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,12 @@ pkg_tar(
"//core/conversion/var:include",
"//core/conversion/tensorcontainer:include",
"//core/conversion/evaluators:include",
"//core/plugins:include",
"//core/ir:include",
"//core/lowering:include",
"//core/lowering/passes:include",
"//core/partitioning:include",
"//core/plugins:impl_include",
"//core/plugins:include",
"//core/runtime:include",
"//core/util:include",
"//core/util/logging:include",
Expand Down
11 changes: 8 additions & 3 deletions core/plugins/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@ load("@rules_pkg//:pkg.bzl", "pkg_tar")
pkg_tar(
name = "include",
package_dir = "core/plugins/",
srcs = ["plugins.h",
"impl/interpolate_plugin.h",
"impl/normalize_plugin.h"],
srcs = ["plugins.h"],
)

pkg_tar(
name = "impl_include",
package_dir = "core/plugins/impl",
srcs = ["impl/interpolate_plugin.h",
"impl/normalize_plugin.h"],
)

0 comments on commit 730efdd

Please sign in to comment.