mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-06 03:31:43 +00:00
20 lines
447 B
Python
20 lines
447 B
Python
load("@rules_cc//cc:defs.bzl", "cc_binary")
|
|
load("//shared/bazel/rules:halsim_library.bzl", "wpilib_halsim_extension")
|
|
|
|
wpilib_halsim_extension(
|
|
name = "halsim_xrp",
|
|
srcs = glob([
|
|
"src/main/native/cpp/*",
|
|
"src/main/native/include/*.h",
|
|
]),
|
|
deps = [
|
|
"//simulation/halsim_ws_core",
|
|
"//xrpVendordep:xrp-cpp",
|
|
],
|
|
)
|
|
|
|
cc_binary(
|
|
name = "DevMain-Cpp",
|
|
srcs = ["src/dev/native/cpp/main.cpp"],
|
|
)
|