-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreindeer.toml
More file actions
42 lines (32 loc) · 1.02 KB
/
Copy pathreindeer.toml
File metadata and controls
42 lines (32 loc) · 1.02 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
42
vendor = false
precise_srcs = true
include_top_level = true
third_party_dir = "third-party"
[platform.linux-x86_64]
target = "x86_64-unknown-linux-gnu"
[platform.linux-arm64]
target = "aarch64-unknown-linux-gnu"
[platform.macos]
target = "x86_64-apple-darwin"
[platform.macos-arm64]
target = "aarch64-apple-darwin"
[platform.windows-msvc]
target = "x86_64-pc-windows-msvc"
[platform.windows-gnu]
target = "x86_64-pc-windows-gnu"
[platform.wasi-wasm32]
target = "wasm32-wasi"
[buck]
rust_library = "cargo.rust_library"
rust_binary = "cargo.rust_binary"
cxx_library = "third_party_rust_cxx_library"
prebuilt_cxx_library = "third_party_rust_prebuilt_cxx_library"
buildscript_genrule = "buildscript_run"
generated_file_header = """
# \u0040generated by `./reindeer buckify`
"""
buckfile_imports = """
load("@prelude//rust:cargo_buildscript.bzl", "buildscript_run")
load("@prelude//rust:cargo_package.bzl", "cargo")
load("//third-party/macros:rust_third_party.bzl", "third_party_rust_cxx_library", "third_party_rust_prebuilt_cxx_library")
"""