Skip to content

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).


Back to index.

Meson documentation has moved

All documentation is now on the main web site.

This page should be at this address.

Clone this wiki locally