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.
11 lines
276 B
11 lines
276 B
2 years ago
|
project('Python limited api disabled', 'c',
|
||
|
default_options : ['buildtype=release', 'werror=true', 'python.allow_limited_api=false'])
|
||
|
|
||
|
py_mod = import('python')
|
||
|
py = py_mod.find_installation()
|
||
|
|
||
|
module = py.extension_module('my_module',
|
||
|
'module.c',
|
||
|
limited_api: '3.7',
|
||
|
)
|