-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Modules
jpakkane edited this page Mar 13, 2015
·
5 revisions
In addition to core language features, Meson also provides a module system aimed at providing helper methods for common build operations. Using modules is simple, first you import them:
mymod = import('somemodule')
After this you can use the returned object to use the functionality provided:
mymod.do_something('text argument')
The list of modules and their functionality is available on [this page](Module reference).
All documentation is now on the main web site.
This page should be at this address.