blob: eecb151f48d5728b551f2f0b63cd21b7b90be2f9 [file] [log] [blame]
project('d and c++', 'd', 'cpp')
cpp = meson.get_compiler('cpp')
if cpp.get_id() == 'clang'
error('MESON_SKIP_TEST combining Clang C++ with GDC produces broken executables.')
endif
e1 = executable('dcpp', 'dmain.d', 'libfile.cpp')
test('dcpp', e1)
e2 = executable('cppd', 'cppmain.cpp', 'libfile.d')
test('cppd', e2)