blob: a988f00e4ed9db4b8716041f0f21eb562ab8304f [file] [log] [blame]
package(default_visibility = ["//visibility:public"])
cc_library(
name = "pico_runtime",
srcs = ["runtime.c"],
hdrs = [
"include/pico/runtime.h",
"include/pico/runtime_init.h",
],
copts = select({
"@platforms//os:windows": [], # TODO: MSVC flags.
"//conditions:default": ["-Wno-ignored-attributes"],
}),
includes = ["include"],
target_compatible_with = ["//bazel/constraint:host"],
deps = ["//src/host/pico_platform"],
)