| # Copyright 2025 The Fuchsia Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| load("//build/bazel/rules:zx_library.bzl", "cc_source_library_zx") | |
| cc_source_library_zx( | |
| name = "cmdline", | |
| srcs = ["args_parser.cc"], | |
| hdrs = [ | |
| "include/lib/cmdline/args_parser.h", | |
| "include/lib/cmdline/optional.h", | |
| "include/lib/cmdline/status.h", | |
| ], | |
| includes = ["include"], | |
| visibility = ["//visibility:public"], | |
| ) |