forked from GStreamer/gst-rtsp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
meson: Update option names to omit disable_ and with- prefixes
Also yield common options to the outer project (gst-build in our case) so that they don't have to be set manually.
- Loading branch information
Showing
2 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
option('disable_introspection', | ||
type : 'boolean', value : false, | ||
description : 'Whether to disable the introspection generation') | ||
option('with-package-name', type : 'string', | ||
option('introspection', type : 'boolean', value : true, yield : true, | ||
description : 'Generate gobject-introspection bindings') | ||
option('package-name', type : 'string', yield : true, | ||
description : 'package name to use in plugins') | ||
option('with-package-origin', type : 'string', value : 'Unknown package origin', | ||
option('package-origin', type : 'string', | ||
value : 'Unknown package origin', yield : true, | ||
description : 'package origin URL to use in plugins') | ||
option('tests', type : 'boolean', value : true, | ||
description : 'Build and enable unit tests') | ||
option('examples', type : 'boolean', value : true, | ||
option('examples', type : 'boolean', value : true, yield : true, | ||
description : 'Build the examples') |