meson: build imx driver
[mesa.git] / src / meson.build
index 4c82eec70f184194f261dccf3e6cbc53fd90f4b8..9b1b0ae594d103a12ba24131a41de7d2737ed70c 100644 (file)
 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 # SOFTWARE.
 
-# TODO: libglsl_util
-
-# TODO: git_sha. There's a meson builtin for this
-
 inc_common = include_directories(
   '../include', '.', 'mapi', 'mesa', 'gallium/include', 'gallium/auxiliary')
 inc_mesa = include_directories('mesa')
 inc_mapi = include_directories('mapi')
+inc_src = include_directories('.')
+
+libglsl_util = static_library(
+  'glsl_util',
+  files('mesa/main/extensions_table.c', 'mesa/main/imports.c',
+        'mesa/program/prog_parameter.c', 'mesa/program/symbol_table.c',
+        'mesa/program/dummy_errors.c'),
+  include_directories : [inc_common],
+  c_args : [c_vis_args],
+  build_by_default : false,
+)
+
+sha1_h = vcs_tag(
+  input : 'git_sha1.h.in',
+  output : 'git_sha1.h',
+)
 
 subdir('gtest')
 subdir('util')
-#subdir('mapi/glapi/gen')
-# TODO: mapi
+subdir('mapi/glapi/gen')
+subdir('mapi')
 # TODO: opengl
-# TODO: glx
 # TODO: osmesa
 subdir('compiler')
 subdir('egl/wayland/wayland-drm')
 subdir('vulkan')
-# TODO: amd
+subdir('amd')
+if with_gallium_vc4
+  subdir('broadcom')
+endif
 subdir('intel')
-# TODO: vc4
-# TODO: opengl_common
-# TODO: dri_glx
-# TODO: gbm
-# TODO: egl
-# TODO: radv
-# TODO: gallium
+subdir('mesa')
+subdir('loader')
+subdir('glx')
+if with_platform_wayland
+  subdir('egl/wayland/wayland-egl')
+endif
+if with_gbm
+  subdir('gbm')
+endif
+if with_egl
+  subdir('egl')
+endif
+subdir('gallium')