mesa/src/getopt/meson.build
David Heidelberg 68215332a8 build: pass licensing information in SPDX form
Acked-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Acked-by: Dylan Baker <dylan.c.baker@intel.com>
Acked-by: Eric Engestrom <eric@igalia.com>
Acked-by: Daniel Stone <daniels@collabora.com>
Signed-off-by: David Heidelberg <david@ixit.cz>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29972>
2024-06-29 12:42:49 -07:00

12 lines
261 B
Meson

# Copyright © 2018 Intel Corporation
# SPDX-License-Identifier: MIT
libgetopt = static_library(
'getopt',
'getopt_long.c',
)
idep_getopt = declare_dependency(
link_with : libgetopt,
include_directories : include_directories('.', is_system : true),
)