-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathBUILD
More file actions
41 lines (37 loc) · 1.03 KB
/
BUILD
File metadata and controls
41 lines (37 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Main library build recipe
cc_import(
name = "agents_cpp",
hdrs = glob([
"include/agents-cpp/**/*.h",
"include/spdlog/**/*.h"
]),
includes = [
"include",
],
shared_library = select({
"@platforms//os:linux": "lib/linux/libagents_cpp_shared_lib.so",
"@platforms//os:macos": "lib/macos/libagents_cpp_shared_lib.dylib",
"@platforms//os:windows": "lib/windows/agents_cpp_shared_lib.dll",
"//conditions:default": None,
}),
deps = [
"@cpp-httplib//:httplib",
"@nlohmann_json//:json"
],
visibility = ["//visibility:public"]
)
# Export .env file for examples and demos
exports_files([
".env",
"sample_media/ui/index.html",
"sample_media/ui/in-car.html",
],
visibility = ["__subpackages__"]
)
# Global workspace config — .example files (templates) + skills loaded by all agents
filegroup(
name = "workspace_config",
srcs = glob([".agents/**"]),
visibility = ["//visibility:public"],
)
# End of BUILD file