mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
build: rename --enable-shared switch
Rename it to --enable-libmpv-shared. The option name didn't really tell much. When we add the possibility to create a static library, it would also be bad if that were named --enable-static (because it would sound like it does what --static-build does).
This commit is contained in:
4
wscript
4
wscript
@@ -10,14 +10,14 @@ from waftools.checks.custom import *
|
||||
|
||||
build_options = [
|
||||
{
|
||||
'name': '--shared',
|
||||
'name': '--libmpv-shared',
|
||||
'desc': 'shared library',
|
||||
'default': 'disable',
|
||||
'func': check_true
|
||||
}, {
|
||||
'name': '--client-api-examples',
|
||||
'desc': 'build client API examples',
|
||||
'deps': ['shared'],
|
||||
'deps': ['libmpv-shared'],
|
||||
'func': check_true
|
||||
}, {
|
||||
'name': '--static-build',
|
||||
|
||||
Reference in New Issue
Block a user