parent
9b790041de
commit
c979b8f9e7
4 changed files with 36 additions and 4 deletions
@ -0,0 +1,25 @@ |
||||
.TH MESONCONF "1" "December 2013" "mesonconf 0.11.0" "User Commands" |
||||
.SH NAME |
||||
mesonconf - a tool to configure Meson builds |
||||
.SH DESCRIPTION |
||||
|
||||
Mesonconf provides a way to configure a Meson |
||||
project from the command line. Its usage is simple. |
||||
|
||||
.B mesonconf [ |
||||
.I build directory |
||||
.B ] [ |
||||
.I options to set |
||||
.B ] |
||||
|
||||
If build directory is omitted, the current directory is used instead. |
||||
|
||||
If no parameters are set, mesonconf will print the value of all build |
||||
options to the console. |
||||
|
||||
To set values, just use the -D command line argument like this. |
||||
|
||||
.B mesonconf -Dopt1=value1 -Dopt2=value2 |
||||
|
||||
.SH SEE ALSO |
||||
https://sourceforge.net/p/meson |
@ -1 +1 @@ |
||||
option('opt', type : 'boolean', value : true) |
||||
option('opt', type : 'boolean', value : true, description : 'main project option') |
||||
|
@ -1 +1 @@ |
||||
option('opt', type : 'boolean', value : false) |
||||
option('opt', type : 'boolean', value : false, description : 'subproject option') |
||||
|
Loading…
Reference in new issue