Rage video and audio player
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.
|
|
|
COMPILING and INSTALLING
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
Meson is the build system used for this project. For more information please
|
|
|
|
see:
|
|
|
|
|
|
|
|
http://mesonbuild.com
|
|
|
|
|
|
|
|
----
|
|
|
|
|
|
|
|
Normal compilation in /usr/local:
|
|
|
|
|
|
|
|
meson . build
|
|
|
|
cd build
|
|
|
|
ninja
|
|
|
|
sudo ninja install
|
|
|
|
|
|
|
|
For meson build generic options:
|
|
|
|
|
|
|
|
meson --help
|
|
|
|
|
|
|
|
For a list of project specific options supported:
|
|
|
|
|
|
|
|
cat meson_options.txt
|
|
|
|
|
|
|
|
To set 1 or more project specific options:
|
|
|
|
|
|
|
|
meson -Doption=value [-Dother=value2] ...
|
|
|
|
|
|
|
|
To display current configuration:
|
|
|
|
|
|
|
|
mesonconf build
|
|
|
|
|
|
|
|
The above will only work after at least the following is done:
|
|
|
|
|
|
|
|
meson . build
|
|
|
|
|