1# Copyright © 2017 Intel Corporation 2# SPDX-License-Identifier: MIT 3 4if with_any_opengl and with_tests 5 test( 6 'shared-glapi-test', 7 executable( 8 ['shared-glapi-test', glapitable_h], 9 'check_table.cpp', 10 cpp_args : [cpp_msvc_compat_args], 11 include_directories : [inc_src, inc_include, inc_mapi], 12 link_with : [shared_glapi_lib], 13 dependencies : [dep_thread, idep_gtest, idep_mesautilc11], 14 ), 15 suite : ['mapi'], 16 protocol : 'gtest', 17 ) 18endif 19