Skip to content

Commit

Permalink
build: add dummy descriptions for deprecated options
Browse files Browse the repository at this point in the history
  • Loading branch information
Akaricchi committed Dec 28, 2022
1 parent b0c41d4 commit 9ab0197
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions meson_options.txt
Expand Up @@ -19,6 +19,7 @@ option(
'enable_zip',
type : 'boolean',
deprecated : 'vfs_zip',
description : 'DEPRECATED: use vfs_zip instead',
)

option(
Expand All @@ -42,6 +43,7 @@ option(
type : 'combo',
choices : ['auto', 'true', 'false'],
deprecated : 'install_relocatable',
description : 'DEPRECATED: use install_relocatable instead',
)

option(
Expand All @@ -63,7 +65,8 @@ option(
option(
'macos_bundle',
type : 'boolean',
deprecated : 'install_macos_bundle'
deprecated : 'install_macos_bundle',
description : 'DEPRECATED: use install_macos_bundle instead',
)

option(
Expand Down Expand Up @@ -96,7 +99,8 @@ option(
'static',
type : 'boolean',
value : false,
deprecated : 'prefer_static'
deprecated : 'prefer_static',
description : 'DEPRECATED: use prefer_static instead',
)

option(
Expand Down

0 comments on commit 9ab0197

Please sign in to comment.