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.
 
 
 
 
 
 

714 B

Add support for all Windows subsystem types

It is now possible to build things like Windows kernel drivers with the new win_subsystem keyword argument. This replaces the old gui_app keyword argument, which is now deprecated. You should update your project to use the new style like this:

# Old way
executable(..., gui_app: 'true')
# New way
executable(..., win_subsystem: 'windows')

The argument supports versioning as described on MSDN documentation. Thus to build a Windows kernel driver with a specific version you'd write something like this:

executable(..., win_subsystem: 'native,6.02')