Skip to content
Snippets Groups Projects
Commit 28cc05ac authored by Tim-Philipp Müller's avatar Tim-Philipp Müller :tropical_fish:
Browse files

meson: don't export symbols by default

Only plugin entry points should be exported.
parent 5b22802b
No related branches found
No related tags found
No related merge requests found
...@@ -91,6 +91,11 @@ else ...@@ -91,6 +91,11 @@ else
language : 'c') language : 'c')
endif endif
# Symbol visibility
if cc.has_argument('-fvisibility=hidden')
add_project_arguments('-fvisibility=hidden', language: 'c')
endif
if gst_dep.type_name() == 'internal' if gst_dep.type_name() == 'internal'
gst_proj = subproject('gstreamer') gst_proj = subproject('gstreamer')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment