glapi: inline the meson list files_mapi_util
so that people can easily tell where these files are used by searching for the file names in the meson files. Acked-by: Adam Jackson <ajax@redhat.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21777>
This commit is contained in:
@@ -55,6 +55,10 @@ if with_platform_windows
|
|||||||
static_glapi_args += ['-D_GDI32_', '-DKHRONOS_DLL_EXPORTS', '-D_GLAPI_DLL_EXPORTS']
|
static_glapi_args += ['-D_GDI32_', '-DKHRONOS_DLL_EXPORTS', '-D_GLAPI_DLL_EXPORTS']
|
||||||
endif
|
endif
|
||||||
static_glapi_files += files(
|
static_glapi_files += files(
|
||||||
|
'../u_current.c',
|
||||||
|
'../u_current.h',
|
||||||
|
'../u_execmem.c',
|
||||||
|
'../u_execmem.h',
|
||||||
'glapi_dispatch.c',
|
'glapi_dispatch.c',
|
||||||
'glapi_entrypoint.c',
|
'glapi_entrypoint.c',
|
||||||
'glapi_getproc.c',
|
'glapi_getproc.c',
|
||||||
@@ -63,7 +67,6 @@ static_glapi_files += files(
|
|||||||
'glapi.h',
|
'glapi.h',
|
||||||
'glapi_priv.h',
|
'glapi_priv.h',
|
||||||
)
|
)
|
||||||
static_glapi_files += files_mapi_util
|
|
||||||
static_glapi_files += [
|
static_glapi_files += [
|
||||||
glapitable_h, glapi_mapi_tmp_h, glprocs_h, glapitemp_h,
|
glapitable_h, glapi_mapi_tmp_h, glprocs_h, glapitemp_h,
|
||||||
]
|
]
|
||||||
|
@@ -18,13 +18,6 @@
|
|||||||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
# SOFTWARE.
|
# SOFTWARE.
|
||||||
|
|
||||||
files_mapi_util = files(
|
|
||||||
'u_current.c',
|
|
||||||
'u_current.h',
|
|
||||||
'u_execmem.c',
|
|
||||||
'u_execmem.h',
|
|
||||||
)
|
|
||||||
|
|
||||||
genCommon_py = files('new/genCommon.py')
|
genCommon_py = files('new/genCommon.py')
|
||||||
glapi_gen_mapi_py = files('new/gen_gldispatch_mapi.py')
|
glapi_gen_mapi_py = files('new/gen_gldispatch_mapi.py')
|
||||||
mapi_abi_py = files('mapi_abi.py')
|
mapi_abi_py = files('mapi_abi.py')
|
||||||
|
@@ -20,6 +20,10 @@
|
|||||||
|
|
||||||
files_shared_glapi = files(
|
files_shared_glapi = files(
|
||||||
'../entry.c',
|
'../entry.c',
|
||||||
|
'../u_current.c',
|
||||||
|
'../u_current.h',
|
||||||
|
'../u_execmem.c',
|
||||||
|
'../u_execmem.h',
|
||||||
'glapi.c',
|
'glapi.c',
|
||||||
'stub.c',
|
'stub.c',
|
||||||
'stub.h',
|
'stub.h',
|
||||||
@@ -43,7 +47,7 @@ endif
|
|||||||
|
|
||||||
libglapi = shared_library(
|
libglapi = shared_library(
|
||||||
'glapi',
|
'glapi',
|
||||||
[files_shared_glapi, files_mapi_util, shared_glapi_mapi_tmp_h],
|
[files_shared_glapi, shared_glapi_mapi_tmp_h],
|
||||||
c_args : [
|
c_args : [
|
||||||
_glapi_c_args,
|
_glapi_c_args,
|
||||||
c_msvc_compat_args,
|
c_msvc_compat_args,
|
||||||
|
Reference in New Issue
Block a user