meson: reorder subdirs to avoid directly including more than one level

Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
This commit is contained in:
Eric Engestrom
2017-11-21 15:07:11 +00:00
parent ab0809e552
commit d16af73559
3 changed files with 3 additions and 2 deletions

View File

@@ -18,6 +18,8 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
subdir('gen')
inc_glapi = include_directories('.')
static_glapi_files = []

View File

@@ -25,10 +25,10 @@ files_mapi_util = files(
'u_execmem.h',
)
subdir('glapi')
if with_shared_glapi
subdir('shared-glapi')
endif
subdir('glapi')
if with_gles1
subdir('es1api')
endif

View File

@@ -45,7 +45,6 @@ sha1_h = custom_target(
subdir('gtest')
subdir('util')
subdir('mapi/glapi/gen')
subdir('mapi')
# TODO: opengl
subdir('compiler')