summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefano Pigozzi <stefano.pigozzi@gmail.com>2014-11-28 15:55:54 +0100
committerStefano Pigozzi <stefano.pigozzi@gmail.com>2014-11-28 15:57:13 +0100
commit2658dc712d736a93e007591c8b85d4de7f1902e3 (patch)
tree2e40db7914c9ccb52023c69cc71189169523871d
parentb4deba7cc91d901d1c7fef68cc9e95700ad1fdd1 (diff)
downloadmpv-2658dc712d736a93e007591c8b85d4de7f1902e3.tar.bz2
mpv-2658dc712d736a93e007591c8b85d4de7f1902e3.tar.xz
build: move --cplayer to build options
This way it’s near to it’s libmpv counterparts
-rw-r--r--wscript9
1 files changed, 5 insertions, 4 deletions
diff --git a/wscript b/wscript
index f6939499b1..08ce901f51 100644
--- a/wscript
+++ b/wscript
@@ -10,6 +10,11 @@ from waftools.checks.custom import *
build_options = [
{
+ 'name': '--cplayer',
+ 'desc': 'mpv CLI player',
+ 'default': 'enable',
+ 'func': check_true
+ }, {
'name': '--libmpv-shared',
'desc': 'shared library',
'default': 'disable',
@@ -765,10 +770,6 @@ radio_and_tv_features = [
standalone_features = [
{
- 'name': '--cplayer',
- 'desc': 'mpv CLI player',
- 'func': check_true
- }, {
'name': 'win32-executable',
'desc': 'w32 executable',
'deps_any': [ 'os-win32', 'os-cygwin'],