mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
#!/usr//bin/python
|
|
#
|
|
# Copyright (c) 2014,Thibault Saunier <thibault.saunier@collabora.com>
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
# License as published by the Free Software Foundation; either
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this program; if not, write to the
|
|
# Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
# Boston, MA 02110-1301, USA.
|
|
|
|
import os
|
|
import sys
|
|
from launcher.main import main
|
|
|
|
LIBDIR = '@LIBDIR@'
|
|
|
|
|
|
def _in_devel():
|
|
root_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
|
return os.path.exists(os.path.join(root_dir, '.git'))
|
|
|
|
|
|
def _add_gst_launcher_path():
|
|
if not _in_devel():
|
|
root = os.path.join(LIBDIR, 'gst-validate-launcher', 'python')
|
|
sys.path.insert(0, root)
|
|
|
|
|
|
if "__main__" == __name__:
|
|
_add_gst_launcher_path()
|
|
exit(main())
|