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
359 B
19 lines
359 B
4 years ago
|
## Cython as as first class language
|
||
|
|
||
|
Meson now supports Cython as a first class language. This means you can write:
|
||
|
|
||
|
```meson
|
||
|
project('my project', 'cython')
|
||
|
|
||
|
py = import('python')
|
||
|
dep_py3 = py.dependency()
|
||
|
|
||
|
py.extension_module(
|
||
|
'foo',
|
||
|
'foo.pyx',
|
||
|
dependencies : dep_py,
|
||
|
)
|
||
|
```
|
||
|
|
||
|
And avoid the step through a generator that was previously required.
|