summaryrefslogtreecommitdiffstats
path: root/wscript_build.py
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-12-17 00:53:22 +0100
committerwm4 <wm4@nowhere>2013-12-17 00:53:22 +0100
commite44911142914783c9ec717f329bd9b6a8bb9b70e (patch)
tree92bb653f7d56553ffd3bb6e5a22ffc0db91142e8 /wscript_build.py
parent7dc7b900c622235d595337c988a0c75280084b7c (diff)
downloadmpv-e44911142914783c9ec717f329bd9b6a8bb9b70e.tar.bz2
mpv-e44911142914783c9ec717f329bd9b6a8bb9b70e.tar.xz
Move mpvcore/player/ to player/
Diffstat (limited to 'wscript_build.py')
-rw-r--r--wscript_build.py46
1 files changed, 24 insertions, 22 deletions
diff --git a/wscript_build.py b/wscript_build.py
index a5f92b1f9f..538dd7a8cc 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -71,16 +71,16 @@ def build(ctx):
target = "sub/osd_font.h")
ctx.file2string(
- source = "mpvcore/player/lua/defaults.lua",
- target = "mpvcore/player/lua/defaults.inc")
+ source = "player/lua/defaults.lua",
+ target = "player/lua/defaults.inc")
ctx.file2string(
- source = "mpvcore/player/lua/assdraw.lua",
- target = "mpvcore/player/lua/assdraw.inc")
+ source = "player/lua/assdraw.lua",
+ target = "player/lua/assdraw.inc")
ctx.file2string(
- source = "mpvcore/player/lua/osc.lua",
- target = "mpvcore/player/lua/osc.inc")
+ source = "player/lua/osc.lua",
+ target = "player/lua/osc.inc")
ctx.matroska_header(
source = "demux/ebml.c demux/demux_mkv.c",
@@ -166,22 +166,6 @@ def build(ctx):
( "mpvcore/input/input.c" ),
( "mpvcore/input/joystick.c", "joystick" ),
( "mpvcore/input/lirc.c", "lirc" ),
- ( "mpvcore/player/audio.c" ),
- ( "mpvcore/player/command.c" ),
- ( "mpvcore/player/configfiles.c" ),
- ( "mpvcore/player/dvdnav.c" ),
- ( "mpvcore/player/loadfile.c" ),
- ( "mpvcore/player/main.c" ),
- ( "mpvcore/player/misc.c" ),
- ( "mpvcore/player/mp_lua.c", "lua" ),
- ( "mpvcore/player/osd.c" ),
- ( "mpvcore/player/playloop.c" ),
- ( "mpvcore/player/screenshot.c" ),
- ( "mpvcore/player/sub.c" ),
- ( "mpvcore/player/timeline/tl_cue.c" ),
- ( "mpvcore/player/timeline/tl_mpv_edl.c" ),
- ( "mpvcore/player/timeline/tl_matroska.c" ),
- ( "mpvcore/player/video.c" ),
( "mpvcore/asxparser.c" ),
( "mpvcore/av_common.c" ),
( "mpvcore/av_log.c" ),
@@ -222,6 +206,24 @@ def build(ctx):
( "demux/ebml.c" ),
( "demux/mf.c" ),
+ ## Player
+ ( "player/audio.c" ),
+ ( "player/command.c" ),
+ ( "player/configfiles.c" ),
+ ( "player/dvdnav.c" ),
+ ( "player/loadfile.c" ),
+ ( "player/main.c" ),
+ ( "player/misc.c" ),
+ ( "player/mp_lua.c", "lua" ),
+ ( "player/osd.c" ),
+ ( "player/playloop.c" ),
+ ( "player/screenshot.c" ),
+ ( "player/sub.c" ),
+ ( "player/timeline/tl_cue.c" ),
+ ( "player/timeline/tl_mpv_edl.c" ),
+ ( "player/timeline/tl_matroska.c" ),
+ ( "player/video.c" ),
+
## Streams
( "stream/ai_alsa1x.c", "alsa" ),
( "stream/ai_oss.c", "oss-audio" ),