xref: /aosp_15_r20/external/mesa3d/src/getopt/meson.build (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1# Copyright © 2018 Intel Corporation
2# SPDX-License-Identifier: MIT
3
4libgetopt = static_library(
5  'getopt',
6  'getopt_long.c',
7)
8
9idep_getopt = declare_dependency(
10  link_with : libgetopt,
11  include_directories : include_directories('.', is_system : true),
12)
13