summaryrefslogtreecommitdiffstats
path: root/wscript_build.py
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-05-02 18:47:57 +0200
committerwm4 <wm4@nowhere>2015-05-02 18:59:58 +0200
commit1e7831070f6ae1af0a1a29b0d680ef2907bf8cf6 (patch)
tree0d5bc34cfcdf029b8a22deb98c4f0e73c4266d57 /wscript_build.py
parent19a5b20752ecc7465cf17781f908e12bf4ca136d (diff)
downloadmpv-1e7831070f6ae1af0a1a29b0d680ef2907bf8cf6.tar.bz2
mpv-1e7831070f6ae1af0a1a29b0d680ef2907bf8cf6.tar.xz
build: move main-fn files to osdep
And split the Cocoa and Unix cases. Simplify the Cocoa case slightly by calling mpv_main directly, instead of passing a function pointer. Also add a comment explaining why Cocoa needs a special case at all.
Diffstat (limited to 'wscript_build.py')
-rw-r--r--wscript_build.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/wscript_build.py b/wscript_build.py
index 89ec67c471..93642c4693 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -71,9 +71,12 @@ def build(ctx):
source = "demux/ebml.c",
target = "ebml_defs.c")
- main_fn_c = {
- 'win32': 'player/main-fn-win.c',
- }.get(ctx.env.DEST_OS, "player/main-fn-unix.c")
+ if ctx.env.DEST_OS == 'win32':
+ main_fn_c = 'osdep/main-fn-win.c'
+ elif ctx.dependency_satisfied('cocoa'):
+ main_fn_c = 'osdep/main-fn-cocoa.c'
+ else:
+ main_fn_c = 'osdep/main-fn-unix.c'
getch2_c = {
'win32': 'osdep/terminal-win.c',