Module: Mesa Branch: master Commit: eab0316d107dd2d050ea01eb829f86de1a617e1c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=eab0316d107dd2d050ea01eb829f86de1a617e1c
Author: Dylan Baker <[email protected]> Date: Fri Dec 8 15:29:59 2017 -0800 meson: set opencl flags for r600 Signed-off-by: Dylan Baker <[email protected]> --- src/gallium/drivers/r600/meson.build | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/gallium/drivers/r600/meson.build b/src/gallium/drivers/r600/meson.build index 2132dbb33a..5899518a2e 100644 --- a/src/gallium/drivers/r600/meson.build +++ b/src/gallium/drivers/r600/meson.build @@ -113,12 +113,15 @@ egd_tables_h = custom_target( capture : true, ) -# TODO: compute defines +r600_c_args = [] +if with_gallium_opencl + r600_c_args += '-DHAVE_OPENCL' +endif libr600 = static_library( 'r600', [files_r600, egd_tables_h], - c_args : [c_vis_args], + c_args : [c_vis_args, r600_c_args], cpp_args : [cpp_vis_args], include_directories : [ inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_amd_common, _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
