The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
350 B
19 lines
350 B
# GCC does not recognize .ixx as a C++ source extension so |
|
# we have to do this instead. |
|
|
|
e = executable('modtest', |
|
'main.cpp', |
|
'src0.cxx', |
|
'src1.cxx', |
|
'src2.cxx', |
|
'src3.cxx', |
|
'src4.cxx', |
|
'src5.cxx', |
|
'src6.cxx', |
|
'src7.cxx', |
|
'src8.cxx', |
|
'src9.cxx', |
|
cpp_args: ['-fmodules-ts'], |
|
) |
|
|
|
test('modtest', e)
|
|
|