rules_apple icon indicating copy to clipboard operation
rules_apple copied to clipboard

Runfiles not bundled with macos_application

Open gkoreman opened this issue 7 months ago • 0 comments

Building a macos_application with a cc_library does not include runfiles.

cc_library(
    name = "libapp",
    srcs = ["main.cpp",],
    data = [":data.txt"],
)

macos_application(
    name = "app_macos",
    deps = [":libapp"],
)

data.txt is not packaged in the macos_application.

gkoreman avatar Jun 26 '24 04:06 gkoreman