uninstalled: Take into account -good pkgconfig uninstalled file
[platform/upstream/gstreamer.git] / meson.build
1 project('All GStreamer modules', 'c', version : '1.11.1.1', meson_version : '>= 0.36')
2
3 gst_version = '>= @0@'.format(meson.project_version())
4 gst_branch = 'master'
5
6 glib_req = '>= 2.40.0'
7
8 subprojects = [
9     'gstreamer',
10     'gst-plugins-base',
11     'gst-plugins-good',
12 ]
13
14 cc = meson.get_compiler('c')
15 if not meson.is_subproject() and cc.get_id() == 'msvc'
16   # Make it possible to use msys2 built zlib
17   # which fails when not using the mingw toolchain as
18   # it uses unistd.h
19   add_global_arguments('-DZ_SOLO', language: 'c')
20 endif
21
22 # FIXME Remove that check once we have ffmpeg as a gst-libav subproject
23 libavfilter_dep = dependency('libavfilter', version: '>= 6.47.100', required: false)
24 gst_libav = []
25 if libavfilter_dep.found()
26     cc = meson.get_compiler('c')
27     check_ffmpeg_src = '''#include <libavcodec/avcodec.h>
28     #if LIBAVCODEC_VERSION_MICRO >= 100
29     /* FFmpeg uses 100+ as its micro version */
30     #else
31     #error libav provider should be FFmpeg
32     #endif'''
33     if cc.compiles(check_ffmpeg_src, dependencies : libavfilter_dep, name : 'whether libav is provided by FFmpeg')
34         gst_libav = ['gst-libav']
35     endif
36 endif
37
38 if gst_libav.length() == 0
39     message('WARNING: gst-libav not built as ffmpeg >= n3.1.2 not found on the system')
40 endif
41
42 if get_option('enable_python')
43     subprojects += ['gst-python']
44 endif
45
46 if not get_option('disable_gst_plugins_ugly')
47     subprojects += ['gst-plugins-ugly']
48 endif
49
50 if not get_option('disable_gst_plugins_bad')
51     subprojects += ['gst-plugins-bad']
52 endif
53
54 if not get_option('disable_gst_libav')
55     subprojects += gst_libav
56 endif
57
58 if not get_option('disable_gst_omx')
59     subprojects += ['gst-omx']
60 endif
61
62 if not get_option('disable_gstreamer_vaapi')
63   if dependency('libva', version: '>= 0.30.4', required : false).found()
64     subprojects += ['gstreamer-vaapi']
65   else
66     message('WARNING: not building gstreamer-vaapi module, missing libva')
67   endif
68 endif
69
70 if not get_option('disable_gst_devtools')
71   if dependency('json-glib-1.0', required : false).found()
72     subprojects += ['gst-devtools']
73   else
74     message('WARNING: not building gst-devtools module, missing glib-json-1.0')
75   endif
76 endif
77
78 if not get_option('disable_gst_editing_services')
79     subprojects += ['gst-editing-services']
80 endif
81
82 if not get_option('disable_rtsp_server')
83     subprojects += ['gst-rtsp-server']
84 endif
85
86 python3 = find_program('python3')
87 symlink = '''
88 import os
89
90 os.symlink(os.path.join('@1@', 'subprojects', '@0@'),
91     os.path.join('@1@', '@0@'))
92 '''
93
94 foreach custom_subproj: get_option('custom_subprojects').split(',')
95     if custom_subproj != ''
96         message ('Adding custom subproject ' + custom_subproj)
97         subprojects += [custom_subproj]
98     endif
99 endforeach
100
101 foreach subproj: subprojects
102     subproject(subproj, version: gst_version)
103
104     cmdres = run_command(python3, '-c', symlink.format(subproj, meson.current_source_dir()))
105     if cmdres.returncode() == 0
106        message('Created symlink to ' + subproj)
107     else
108        message('Could not create symlink to @0@'.format(subproj))
109     endif
110 endforeach
111
112 setenv = find_program('gst-uninstalled.py')
113 run_target('uninstalled', command : [setenv, '--builddir=@0@'.format(meson.current_build_dir()),
114            '--gst-version=@0@'.format(gst_branch)])
115
116 update = find_program('git-update')
117 run_target('git-update', command : [update])
118 run_target('update', command : [update,
119     '--builddir=@0@'.format(meson.current_build_dir())])