summaryrefslogtreecommitdiffstats
path: root/wscript_build.py
diff options
context:
space:
mode:
Diffstat (limited to 'wscript_build.py')
-rw-r--r--wscript_build.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/wscript_build.py b/wscript_build.py
index 703ade0d61..8142ff87c5 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -60,7 +60,7 @@ def build(ctx):
ctx.file2string(
source = "etc/input.conf",
- target = "mpvcore/input/input_conf.h")
+ target = "input/input_conf.h")
ctx.file2string(
source = "video/out/gl_video_shaders.glsl",
@@ -163,9 +163,6 @@ def build(ctx):
( "audio/out/ao_wasapi.c", "wasapi" ),
## Core
- ( "mpvcore/input/input.c" ),
- ( "mpvcore/input/joystick.c", "joystick" ),
- ( "mpvcore/input/lirc.c", "lirc" ),
( "mpvcore/asxparser.c" ),
( "mpvcore/av_common.c" ),
( "mpvcore/av_log.c" ),
@@ -206,6 +203,11 @@ def build(ctx):
( "demux/ebml.c" ),
( "demux/mf.c" ),
+ ## Input
+ ( "input/input.c" ),
+ ( "input/joystick.c", "joystick" ),
+ ( "input/lirc.c", "lirc" ),
+
## Player
( "player/audio.c" ),
( "player/command.c" ),