Build 1.15.2 release
[platform/upstream/gstreamer.git] / meson.build
1 project('All GStreamer modules', 'c',
2   version : '1.15.2',
3   meson_version : '>= 0.48.0',
4   default_options : ['buildtype=debugoptimized'])
5
6 gst_version = '>= @0@'.format(meson.project_version())
7 gst_branch = 'master'
8
9 glib_req = '>= 2.40.0'
10
11 build_system = build_machine.system()
12 cc = meson.get_compiler('c')
13
14 # Make it possible to use msys2 built zlib which fails
15 # when not using the mingw toolchain as it uses unistd.h
16 if not meson.is_subproject() and cc.get_id() == 'msvc'
17   uname = find_program('uname', required: false)
18   if uname.found()
19     ret = run_command(uname, '-o')
20     if ret.returncode() == 0 and ret.stdout().to_lower() == 'msys'
21       ret = run_command(uname, '-r')
22       # The kernel version returned by uname is actually the msys version
23       if ret.returncode() == 0 and ret.stdout().startswith('2')
24         # If a system zlib is found, disable UNIX features in zlib.h and zconf.h
25         if cc.find_library('z').found()
26           add_global_arguments('-DZ_SOLO', language: 'c')
27         endif
28       endif
29     endif
30   endif
31 endif
32
33 # Ordered list of subprojects (dict has no ordering guarantees)
34 subprojects = [
35   ['gstreamer', {}],
36   ['gst-plugins-base', {}],
37   ['gst-plugins-good', {}],
38   ['gst-plugins-bad', { 'option': get_option('bad') }],
39   ['gst-plugins-ugly', { 'option': get_option('ugly') }],
40   ['gst-libav', { 'option': get_option('libav') }],
41   ['gst-rtsp-server', { 'option': get_option('rtsp_server') }],
42   ['gst-devtools', { 'option': get_option('devtools') }],
43   ['gst-editing-services', { 'option': get_option('ges') }],
44   ['gstreamer-vaapi', { 'option': get_option('vaapi') }],
45   ['gst-omx', { 'option': get_option('omx'), }],
46   ['gstreamer-sharp', { 'option': get_option('sharp') }],
47   ['pygobject', { 'option': get_option('python') }],
48   ['gst-python', { 'option': get_option('python') }],
49 ]
50
51 python3 = import('python').find_installation()
52 symlink = '''
53 import os
54
55 os.symlink(os.path.join('@1@', 'subprojects', '@0@'),
56   os.path.join('@1@', '@0@'))
57 '''
58
59 if build_system == 'windows'
60   subproject('win-flex-bison-binaries')
61   subproject('win-nasm')
62 endif
63
64 subproject('orc', required: get_option('orc'))
65
66 subprojects_names = []
67 foreach sp : subprojects
68   project_name = sp[0]
69   build_infos = sp[1]
70   is_required = build_infos.get('option', true)
71   subproj = subproject(project_name, version: gst_version, required: is_required)
72   if subproj.found()
73     subprojects_names += [project_name]
74     cmdres = run_command(python3, '-c', symlink.format(project_name, meson.current_source_dir()))
75     if cmdres.returncode() == 0
76         message('Created symlink to ' + project_name)
77     endif
78   endif
79 endforeach
80
81 foreach custom_subproj: get_option('custom_subprojects').split(',')
82     if custom_subproj != ''
83         message ('Adding custom subproject ' + custom_subproj)
84         subproject(custom_subproj)
85         subprojects_names += [custom_subproj]
86     endif
87 endforeach
88
89 message('Building subprojects: ' + ', '.join(subprojects_names))
90
91 setenv = find_program('gst-uninstalled.py')
92 run_target('uninstalled', command : [setenv, '--builddir=@0@'.format(meson.build_root()),
93            '--srcdir=@0@'.format(meson.source_root())])
94
95 update = find_program('git-update')
96 run_target('git-update', command : [update])
97 run_target('update', command : [update,
98     '--builddir=@0@'.format(meson.current_build_dir())])