mirror of
https://github.com/videolan/vlc.git
synced 2024-12-15 04:33:38 +08:00
mediacontrol-python: allow to build in a separate builddir
This commit is contained in:
parent
81c1cc5e58
commit
3a1a4609d8
@ -2,6 +2,7 @@
|
|||||||
# Building the Python binding
|
# Building the Python binding
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
|
|
||||||
if HAVE_WIN32
|
if HAVE_WIN32
|
||||||
COMPILERARG = --compiler=mingw32
|
COMPILERARG = --compiler=mingw32
|
||||||
else
|
else
|
||||||
@ -11,10 +12,12 @@ endif
|
|||||||
if BUILD_PYTHON
|
if BUILD_PYTHON
|
||||||
|
|
||||||
all:
|
all:
|
||||||
python setup.py build $(COMPILERARG)
|
srcdir="$(srcdir)" top_builddir="$(top_builddir)" python "$(srcdir)/setup.py" build $(COMPILERARG) "--build-base=$(top_builddir)/bindings/mediacontrol-python" "--build-temp=$(top_builddir)/bindings/mediacontrol-python"
|
||||||
|
|
||||||
|
# FIXME: python setup.py install does not have any option to install from a different build directory
|
||||||
|
# so this will not work in a separate builddir
|
||||||
install:
|
install:
|
||||||
python setup.py install
|
python $(srcdir)/setup.py install
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM) -rf build
|
$(RM) -rf build
|
||||||
|
@ -1,18 +1,38 @@
|
|||||||
from distutils.core import setup, Extension
|
from distutils.core import setup, Extension
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
# Get build variables (buildir, srcdir)
|
||||||
|
try:
|
||||||
|
top_builddir=os.environ['top_builddir']
|
||||||
|
except KeyError:
|
||||||
|
# Note: do not initialize here, so that we get
|
||||||
|
# a correct default value if the env. var is
|
||||||
|
# defined but empty
|
||||||
|
top_builddir=None
|
||||||
|
if not top_builddir:
|
||||||
|
top_builddir = os.path.join( '..', '..' )
|
||||||
|
os.environ['top_builddir'] = top_builddir
|
||||||
|
|
||||||
|
try:
|
||||||
|
srcdir=os.environ['srcdir']
|
||||||
|
except KeyError:
|
||||||
|
# Note: same as above
|
||||||
|
srcdir=None
|
||||||
|
if not srcdir:
|
||||||
|
srcdir = '.'
|
||||||
|
|
||||||
if os.sys.platform in ('win32', 'darwin'):
|
if os.sys.platform in ('win32', 'darwin'):
|
||||||
# Do not use PIC version on win32 and Mac OS X
|
# Do not use PIC version on win32 and Mac OS X
|
||||||
vlclib='../../src/libvlc.a'
|
vlclib=os.path.join( top_builddir, 'src', 'libvlc.a' )
|
||||||
picflag=''
|
picflag=''
|
||||||
else:
|
else:
|
||||||
vlclib='../../src/libvlc_pic.a'
|
vlclib=os.path.join( top_builddir, 'src', 'libvlc_pic.a' )
|
||||||
picflag='pic'
|
picflag='pic'
|
||||||
|
|
||||||
def get_vlcconfig():
|
def get_vlcconfig():
|
||||||
vlcconfig=None
|
vlcconfig=None
|
||||||
for n in ( 'vlc-config',
|
for n in ( 'vlc-config',
|
||||||
os.path.sep.join( ('..', '..', 'vlc-config' ))):
|
os.path.join( top_builddir, 'vlc-config' )):
|
||||||
if os.path.exists(n):
|
if os.path.exists(n):
|
||||||
vlcconfig=n
|
vlcconfig=n
|
||||||
break
|
break
|
||||||
@ -44,7 +64,6 @@ def get_ldflags():
|
|||||||
if vlcconfig is None:
|
if vlcconfig is None:
|
||||||
return []
|
return []
|
||||||
else:
|
else:
|
||||||
os.environ['top_builddir'] = '../..'
|
|
||||||
ldflags = []
|
ldflags = []
|
||||||
if os.sys.platform == 'darwin':
|
if os.sys.platform == 'darwin':
|
||||||
ldflags = "-read_only_relocs warning".split()
|
ldflags = "-read_only_relocs warning".split()
|
||||||
@ -57,17 +76,20 @@ def get_ldflags():
|
|||||||
|
|
||||||
# To compile in a local vlc tree
|
# To compile in a local vlc tree
|
||||||
vlclocal = Extension('vlc',
|
vlclocal = Extension('vlc',
|
||||||
sources = ['vlcglue.c',
|
sources = [ os.path.join( srcdir, 'vlcglue.c'),
|
||||||
'../../src/control/mediacontrol_init.c'],
|
os.path.join( srcdir, '../../src/control/mediacontrol_init.c')],
|
||||||
include_dirs = ['../../include', '../../', '/usr/win32/include' ],
|
include_dirs = [ top_builddir,
|
||||||
|
os.path.join( srcdir, '../../include'),
|
||||||
|
os.path.join( srcdir, '../../', '/usr/win32/include') ],
|
||||||
|
|
||||||
extra_objects = [ vlclib ],
|
extra_objects = [ vlclib ],
|
||||||
extra_compile_args = get_cflags(),
|
extra_compile_args = get_cflags(),
|
||||||
extra_link_args = [ '-L../..' ] + get_ldflags(),
|
extra_link_args = [ '-L' + top_builddir ] + get_ldflags(),
|
||||||
)
|
)
|
||||||
|
|
||||||
setup (name = 'MediaControl',
|
setup (name = 'MediaControl',
|
||||||
version = get_vlc_version(),
|
version = get_vlc_version(),
|
||||||
scripts = [ 'vlcdebug.py' ],
|
scripts = [ os.path.join( srcdir, 'vlcdebug.py') ],
|
||||||
keywords = [ 'vlc', 'video' ],
|
keywords = [ 'vlc', 'video' ],
|
||||||
license = "GPL",
|
license = "GPL",
|
||||||
description = """VLC bindings for python.
|
description = """VLC bindings for python.
|
||||||
|
Loading…
Reference in New Issue
Block a user