1
0
mirror of https://github.com/raspberrypi/pico-sdk.git synced 2025-09-17 09:42:10 +03:00
Files
pico-sdk/test/cmsis_test/BUILD.bazel
graham sanderson efe2103f9b SDK 2.0.0 release
2024-08-08 08:54:38 -05:00

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",
],
)