diff options
author | Dylan Baker <[email protected]> | 2018-04-16 14:40:51 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-04-24 14:08:15 -0700 |
commit | 595021bf1a67346c7dfca652ef2dbcce3e2a6ca0 (patch) | |
tree | 5e5f7b11473e99e1714690d398b8d417a6a05538 /meson.build | |
parent | db90c8627c41486056aeef9883ef0e4a5f245441 (diff) |
meson: remove dummy_cpp
meson has gotten pretty smart about tracking C and C++ dependencies
(internal and external), and using the right linker. This wasn't always
the case and we created empty c++ files to force the use of the c++
linker. We don't need that any more.
Signed-off-by: Dylan Baker <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/meson.build b/meson.build index cfce928ca21..2e10ed74e29 100644 --- a/meson.build +++ b/meson.build @@ -1309,14 +1309,6 @@ endif # TODO: gallium driver dirs -# FIXME: this is a workaround for #2326 -prog_touch = find_program('touch') -dummy_cpp = custom_target( - 'dummy_cpp', - output : 'dummy.cpp', - command : [prog_touch, '@OUTPUT@'], -) - foreach a : pre_args add_project_arguments(a, language : ['c', 'cpp']) endforeach |