Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
golovasteek committed Feb 8, 2024
1 parent 03dd1ba commit adcc9dd
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions WORKSPACE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,17 @@ http_archive(
build_file_content = """
package(default_visibility = ["//visibility:public"])
filegroup(
name = "all_files",
srcs = glob(["**/*.c", "**/*.h"]),
name = "all_sources",
srcs = glob(
["**/*.c", "**/*.h"],
exclude = [
"src/luac.c",
]
),
)
cc_library(
name = "lua54",
srcs = [":all_files"],
srcs = [":all_sources"],
)
"""
)

0 comments on commit adcc9dd

Please sign in to comment.