mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 21:48:55 +00:00
meson: fix multi-line string
https://bugzilla.gnome.org/show_bug.cgi?id=793629
This commit is contained in:
parent
400ea72b06
commit
41d7356fa1
1 changed files with 2 additions and 2 deletions
|
@ -570,8 +570,8 @@ if need_platform_wgl != 'no' and need_win_win32 != 'no'
|
||||||
gdi_dep = cc.find_library('gdi32', required : false)
|
gdi_dep = cc.find_library('gdi32', required : false)
|
||||||
# FIXME: Revert back to has_header once it gains prefix support
|
# FIXME: Revert back to has_header once it gains prefix support
|
||||||
wglext_h = cc.has_header_symbol('GL/wglext.h', 'WGL_WGLEXT_VERSION',
|
wglext_h = cc.has_header_symbol('GL/wglext.h', 'WGL_WGLEXT_VERSION',
|
||||||
prefix : '#include <windows.h>
|
prefix : '''#include <windows.h>
|
||||||
#include <GL/gl.h>')
|
#include <GL/gl.h>''')
|
||||||
|
|
||||||
if wglext_h and gdi_dep.found() and gl_dep.found()
|
if wglext_h and gdi_dep.found() and gl_dep.found()
|
||||||
gl_platform_deps += gdi_dep
|
gl_platform_deps += gdi_dep
|
||||||
|
|
Loading…
Reference in a new issue