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.
 
 
 
 
 
 

13 lines
227 B

## D compiler checks
Some compiler checks are implemented for D:
- `run`
- `sizeof`
- `has_header` (to check if a module is present)
- `alignment`
Example:
```meson
ptr_size = meson.get_compiler('d').sizeof('void*')
```