summaryrefslogtreecommitdiffstats
path: root/wscript_build.py
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-12-17 02:02:25 +0100
committerwm4 <wm4@nowhere>2013-12-17 02:07:57 +0100
commiteb15151705d47d23da844449126cc6b4879f110e (patch)
tree661866ee9e73bc893c7963660aae01db503e99aa /wscript_build.py
parent793f85945fc07db905e54390c065ae51b9eeef9b (diff)
downloadmpv-eb15151705d47d23da844449126cc6b4879f110e.tar.bz2
mpv-eb15151705d47d23da844449126cc6b4879f110e.tar.xz
Move options/config related files from mpvcore/ to options/
Since m_option.h and options.h are extremely often included, a lot of files have to be changed. Moving path.c/h to options/ is a bit questionable, but since this is mainly about access to config files (which are also handled in options/), it's probably ok.
Diffstat (limited to 'wscript_build.py')
-rw-r--r--wscript_build.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/wscript_build.py b/wscript_build.py
index 66a96d834e..16668f8c36 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -172,16 +172,9 @@ def build(ctx):
( "mpvcore/codecs.c" ),
( "mpvcore/cpudetect.c" ),
( "mpvcore/encode_lavc.c", "encoding" ),
- ( "mpvcore/m_config.c" ),
- ( "mpvcore/m_option.c" ),
- ( "mpvcore/m_property.c" ),
( "mpvcore/mp_common.c" ),
( "mpvcore/mp_msg.c" ),
( "mpvcore/mp_ring.c" ),
- ( "mpvcore/options.c" ),
- ( "mpvcore/parser-cfg.c" ),
- ( "mpvcore/parser-mpcmd.c" ),
- ( "mpvcore/path.c" ),
( "mpvcore/playlist.c" ),
( "mpvcore/playlist_parser.c" ),
( "mpvcore/version.c" ),
@@ -206,6 +199,15 @@ def build(ctx):
( "input/joystick.c", "joystick" ),
( "input/lirc.c", "lirc" ),
+ ## Options
+ ( "options/m_config.c" ),
+ ( "options/m_option.c" ),
+ ( "options/m_property.c" ),
+ ( "options/options.c" ),
+ ( "options/parse_commandline.c" ),
+ ( "options/parse_configfile.c" ),
+ ( "options/path.c" ),
+
## Player
( "player/audio.c" ),
( "player/command.c" ),