mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-02-11 09:40:46 +00:00
13 lines
267 B
Python
13 lines
267 B
Python
|
package(default_visibility = ["//visibility:public"])
|
||
|
|
||
|
cc_binary(
|
||
|
name = "pico_sem_test",
|
||
|
testonly = True,
|
||
|
srcs = ["pico_sem_test.c"],
|
||
|
deps = [
|
||
|
"//src/common/pico_stdlib",
|
||
|
"//src/common/pico_sync",
|
||
|
"//test/pico_test",
|
||
|
],
|
||
|
)
|