Properly link flecs library
This commit is contained in:
52
engine/libs/flecs/WORKSPACE
Normal file
52
engine/libs/flecs/WORKSPACE
Normal file
@@ -0,0 +1,52 @@
|
||||
load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository")
|
||||
|
||||
new_git_repository(
|
||||
name = "bake",
|
||||
remote = "git@github.com:SanderMertens/bake.git",
|
||||
commit = "cfc90745f9daa7b7fba80f229af18cdd5029b066",
|
||||
shallow_since = "1614835160 -0800",
|
||||
|
||||
build_file_content = """
|
||||
cc_library(
|
||||
name = "driver-test",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [":util", ":bake"],
|
||||
|
||||
srcs = glob(["drivers/test/src/**/*.c", "drivers/test/src/**/*.h"]),
|
||||
hdrs = glob(["drivers/test/include/**/*.h"]),
|
||||
includes = ["drivers/test/include"],
|
||||
)
|
||||
|
||||
cc_library(
|
||||
name = "bake",
|
||||
visibility = ["//visibility:public"],
|
||||
deps = [":util"],
|
||||
|
||||
srcs = glob(["src/*.c", "src/*.h"]),
|
||||
hdrs = glob(["include/*.h", "include/bake/*.h"]),
|
||||
includes = ["include"],
|
||||
)
|
||||
|
||||
cc_library(
|
||||
name = "util",
|
||||
visibility = ["//visibility:public"],
|
||||
defines = ["__BAKE__", "_XOPEN_SOURCE=600"],
|
||||
|
||||
linkopts = select({
|
||||
"@bazel_tools//src/conditions:windows": [],
|
||||
"//conditions:default": ["-lrt -lpthread -ldl"],
|
||||
}),
|
||||
|
||||
srcs = glob(["util/src/*.c"]) + select({
|
||||
"@bazel_tools//src/conditions:windows": glob(["util/src/win/*.c"]),
|
||||
"//conditions:default": glob(["util/src/posix/*.c"]),
|
||||
}),
|
||||
hdrs = glob(["util/include/*.h", "util/include/bake-util/*.h"]) + select({
|
||||
"@bazel_tools//src/conditions:windows": glob(["util/include/bake-util/win/*.h"]),
|
||||
"//conditions:default": glob(["util/include/bake-util/posix/*.h"]),
|
||||
}),
|
||||
includes = ["util/include"],
|
||||
)
|
||||
"""
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user