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.
 
 
 
 
 
 

22 lines
510 B

## Cython can now transpile to C++ as an intermediate language
Built-in cython support currently only allows C as an intermediate language, now
C++ is also allowed. This can be set via the `cython_language` option, either on
the command line, or in the meson.build files.
```meson
project(
'myproject',
'cython',
default_options : ['cython_language=cpp'],
)
```
or on a per target basis with:
```meson
python.extension_module(
'mod',
'mod.pyx',
override_options : ['cython_language=cpp'],
)
```