mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
meson: libm is not a required library
Most toolchains do not have libm as a separate library at all.
This commit is contained in:
parent
8585a5f2b1
commit
87bf1ac9cd
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
project('gst-examples', 'c', version : '1.17.0.1', license : 'LGPL')
|
||||
|
||||
cc = meson.get_compiler('c')
|
||||
m_dep = cc.find_library('m', required : true)
|
||||
m_dep = cc.find_library('m', required : false)
|
||||
|
||||
glib_dep = dependency('glib-2.0', version: '>= 2.38',
|
||||
fallback: ['glib', 'libglib_dep'])
|
||||
|
|
Loading…
Reference in a new issue