blob: 80fe6bb6b91f4667b654c52e84a6af2392460e81 [file]
load("@rules_cc//cc:cc_library.bzl", "cc_library")
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"],
)