diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2017-11-03 14:54:03 -0700 |
---|---|---|
committer | Jon Turney <jon.turney@dronecode.org.uk> | 2017-11-30 15:09:21 +0000 |
commit | bb5d663b3908de1ef173df8341b283dd00b8123b (patch) | |
tree | 8aa8e072a5be250274644f9dd7ce941b241924af /src/mapi | |
parent | cdb3eb7174f84f3200408c4b43c819fb093da9c6 (diff) |
meson: fix generated source inclusion on macOS and Windows
Reviewed-by: Jon Turney <jon.turney@dronecode.org.uk>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/meson.build b/src/mapi/glapi/meson.build index 14ffa68ad0..8856a95fb6 100644 --- a/src/mapi/glapi/meson.build +++ b/src/mapi/glapi/meson.build @@ -26,7 +26,7 @@ static_glapi_files = [] static_glapi_args = [] if ['apple', 'windows'].contains(with_dri_platform) - static_glapi_files += files('glapi_gentable.c') + static_glapi_files += [glapi_gentable_c, glapitable_h] endif if with_shared_glapi |