mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-24 12:48:13 +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>
21 lines
406 B
Meson
21 lines
406 B
Meson
# Copyright © 2017 Intel Corporation
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
genCommon_py = files('new/genCommon.py')
|
|
glapi_gen_mapi_py = files('new/gen_gldispatch_mapi.py')
|
|
mapi_abi_py = files('mapi_abi.py')
|
|
|
|
subdir('glapi')
|
|
if with_shared_glapi
|
|
subdir('shared-glapi')
|
|
else
|
|
libglapi = []
|
|
endif
|
|
if not with_glvnd
|
|
if with_gles1
|
|
subdir('es1api')
|
|
endif
|
|
if with_gles2
|
|
subdir('es2api')
|
|
endif
|
|
endif
|