meson: wire the new generator for es1 and es2

v2: use ${foo})_py naming (Dylan)
v3: use symbolic name for genCommon.py

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Erik Faye-Lund <erik.faye-lund@collabora.com> (v2)
This commit is contained in:
Emil Velikov 2018-11-20 17:30:47 +00:00 committed by Emil Velikov
parent 656845301d
commit 0842bc879b
4 changed files with 14 additions and 6 deletions

View file

@ -20,10 +20,10 @@
es1_glapi_mapi_tmp_h = custom_target(
'es1_glapi_mapi_tmp.h',
input : [mapi_abi_py, gl_and_es_api_files],
input : [glapi_gen_mapi_py, glapi_gen_gl_xml],
output : 'glapi_mapi_tmp.h',
command : [prog_python, '@INPUT0@', '--printer', 'es1api', '@INPUT1@'],
depend_files : api_xml_files,
command : [prog_python, '@INPUT0@', 'glesv1', '@INPUT1@'],
depend_files : glapi_gen_mapi_deps,
capture : true,
)

View file

@ -20,10 +20,10 @@
es2_glapi_mapi_tmp_h = custom_target(
'es2_glapi_mapi_tmp.h',
input : [mapi_abi_py, gl_and_es_api_files],
input : [glapi_gen_mapi_py, glapi_gen_gl_xml],
output : 'glapi_mapi_tmp.h',
command : [prog_python, '@INPUT0@', '--printer', 'es2api', '@INPUT1@'],
depend_files : api_xml_files,
command : [prog_python, '@INPUT0@', 'glesv2', '@INPUT1@'],
depend_files : glapi_gen_mapi_deps,
capture : true,
)

View file

@ -18,6 +18,13 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
glapi_gen_gl_xml = files('../registry/gl.xml')
glapi_gen_mapi_deps = [
glapi_gen_gl_xml,
genCommon_py,
glapi_gen_gl_xml,
]
gl_and_es_api_files = files('gl_and_es_API.xml')
api_xml_files = files(

View file

@ -26,6 +26,7 @@ files_mapi_util = files(
)
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')