5
edits
Line 34: | Line 34: | ||
== Available tools == | == Available tools == | ||
=== Create an empty | === Create an empty Meson project === | ||
The <tt>gst-project-maker</tt> tool creates a barebones | The <tt>gst-project-maker</tt> tool creates a barebones Meson project to hold your new plugin. | ||
<syntaxhighlight lang=bash> | <syntaxhighlight lang=bash> | ||
cd gst-plugins-bad/tools | cd subprojects/gst-plugins-bad/tools/ | ||
./gst-project-maker my_project | ./gst-project-maker my_project | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 46: | Line 46: | ||
<syntaxhighlight lang=bash> | <syntaxhighlight lang=bash> | ||
cd gst-my_project | cd gst-my_project | ||
meson setup builddir --werror --prefix /usr/ | |||
ninja -C builddir | |||
</syntaxhighlight> | </syntaxhighlight> | ||
edits