Vendor dependencies
Let's see how I like this workflow.
This commit is contained in:
parent
34d1830413
commit
9c435dc440
7500 changed files with 1665121 additions and 99 deletions
15
vendor/cxx/tools/buck/prelude/cpu/TARGETS.v2
vendored
Normal file
15
vendor/cxx/tools/buck/prelude/cpu/TARGETS.v2
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
config_setting(
|
||||
name = "x86_64",
|
||||
constraint_values = [
|
||||
"prelude//cpu/constraints:x86_64",
|
||||
],
|
||||
visibility = ["PUBLIC"],
|
||||
)
|
||||
|
||||
config_setting(
|
||||
name = "arm64",
|
||||
constraint_values = [
|
||||
"prelude//cpu/constraints:arm64",
|
||||
],
|
||||
visibility = ["PUBLIC"],
|
||||
)
|
||||
19
vendor/cxx/tools/buck/prelude/cpu/constraints/TARGETS.v2
vendored
Normal file
19
vendor/cxx/tools/buck/prelude/cpu/constraints/TARGETS.v2
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
# Used by open source projects to support `prelude//`
|
||||
|
||||
constraint_setting(
|
||||
name = "cpu",
|
||||
visibility = ["PUBLIC"],
|
||||
)
|
||||
|
||||
constraint_value(
|
||||
name = "x86_64",
|
||||
constraint_setting = ":cpu",
|
||||
visibility = ["PUBLIC"],
|
||||
)
|
||||
|
||||
# Represents various flavors of ARM64, e.g., arm64_32
|
||||
constraint_value(
|
||||
name = "arm64",
|
||||
constraint_setting = ":cpu",
|
||||
visibility = ["PUBLIC"],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue