mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-04-24 18:02:34 +00:00
16 lines
388 B
Python
16 lines
388 B
Python
load("//bazel:defs.bzl", "compatible_with_rp2")
|
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
cc_binary(
|
|
name = "cmsis_test",
|
|
testonly = True,
|
|
srcs = ["cmsis_test.c"],
|
|
target_compatible_with = compatible_with_rp2(),
|
|
deps = [
|
|
"//bazel/config:PICO_CMSIS_PATH",
|
|
"//src/rp2_common:pico_platform",
|
|
"//src/rp2_common/pico_stdlib",
|
|
],
|
|
)
|