diff options
author | Dylan Baker <[email protected]> | 2018-05-22 17:06:09 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2019-10-10 16:33:04 -0700 |
commit | 880ca3c964ee724e8778be824ed51bf9e84c643f (patch) | |
tree | 540a8185dc01457cd94333475f2d8eaee37c341b /src/gallium/targets/graw-null | |
parent | 095bdbda2bb2b3caf83302c7dcc54acc866599db (diff) |
meson: Set visibility and compat args for graw
Acked-by: Eric Engestrom <[email protected]>
Acked-by: Kristian H. Kristensen <[email protected]>
Diffstat (limited to 'src/gallium/targets/graw-null')
-rw-r--r-- | src/gallium/targets/graw-null/meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/targets/graw-null/meson.build b/src/gallium/targets/graw-null/meson.build index 8bffbeaf7c8..c69542705be 100644 --- a/src/gallium/targets/graw-null/meson.build +++ b/src/gallium/targets/graw-null/meson.build @@ -21,12 +21,14 @@ libgraw_util = static_library( 'graw_util', ['graw_util.c'], + c_args : [c_vis_args, c_msvc_compat_args], include_directories : inc_common, ) libgraw_null = shared_library( 'graw_null', ['graw_null.c'], + c_args : [c_vis_args, c_msvc_compat_args], include_directories : inc_common, link_with : libgallium, dependencies : idep_mesautil, |