rustgn

11 commits
Updated 2026-05-09 17:23:41
libraries/hello_cc
libraries/hello_cc/BUILD.gn
config("hello_cc_config") {
  include_dirs = [ "include" ]
}

cc_static_library("hello_cc") {
  sources = [ "src/lib.cc" ]

  public_configs = [ ":hello_cc_config" ]
}