mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-20 09:08:07 +02:00
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>
12 lines
261 B
Meson
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),
|
|
)
|