Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
429
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
5d79ac49
Commit
5d79ac49
authored
2 years ago
by
Steve Lhomme
Browse files
Options
Downloads
Patches
Plain Diff
meson: fix opengl build for mingw
parent
e37bc901
No related branches found
No related tags found
1 merge request
!3115
meson: fix opengl build for mingw
Pipeline
#304576
passed with stage
in 18 minutes and 44 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/video_output/opengl/meson.build
+3
-2
3 additions, 2 deletions
modules/video_output/opengl/meson.build
with
3 additions
and
2 deletions
modules/video_output/opengl/meson.build
+
3
−
2
View file @
5d79ac49
...
...
@@ -33,7 +33,8 @@ if opengl_dep.found()
files
(
'display.c'
),
opengl_vout_commonsources
],
'link_with'
:
[
libvlc_opengl
]
'link_with'
:
[
libvlc_opengl
],
'dependencies'
:
[
gl_common_dep
,
m_lib
]
}
endif
...
...
@@ -45,7 +46,7 @@ endif
# interop_sw
if
[
'darwin'
,
'android'
].
contains
(
host_system
)
or
opengl_dep
.
found
()
or
opengles2_dep
.
found
()
interop_sw_deps
=
[]
interop_sw_deps
=
[
gl_common_dep
,
m_lib
]
interop_sw_cargs
=
[]
if
have_osx
and
opengl_dep
.
found
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment