This website works better with JavaScript.
Explore
Help
Sign In
Chiebot-Mirror
/
meson
mirror of
https://github.com/mesonbuild/meson.git
Watch
8
Star
0
Fork
You've already forked meson
0
Code
Issues
Projects
Releases
Wiki
Activity
The Meson Build System
http://mesonbuild.com/
13438
Commits
79
Branches
175
Tags
88 MiB
Tree:
06453ed7a4
meson
/
pyproject.toml
4 lines
94 B
Raw
Normal View
History
Unescape
Escape
compilers/d: Add b_ndebug support D lang compilers have an option -release (or similar) which turns off asserts, contracts, and other runtime type checking. This patch wires that up to the b_ndebug flag. Fixes #7082
5 years ago
[
build-system
]
setup.py: better requirements The first version of setuptools to properly support pyproject.toml was 42 (40-41 were buggy). It is also necessary to specify `build-backend = "setuptools.build_meta"`, otherwise you get the (horrible) default `build-backend = "setuptools.build_meta:__legacy__"`.
3 years ago
requires
=
[
"setuptools>=42"
,
"wheel"
]
build-backend
=
"setuptools.build_meta"