8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a30cf3 commit f1b6047Copy full SHA for f1b6047
subprojects/packagefiles/freetype-2.6.1-meson/meson.build
@@ -179,11 +179,17 @@ ft_config_headers += [configure_file(input: 'include/freetype/config/ftoption.h.
179
output: 'ftoption.h',
180
configuration: conf)]
181
182
+if cc.get_id() == 'emscripten'
183
+ kwargs = {}
184
+else
185
+ kwargs = {'gnu_symbol_visibility': 'inlineshidden'}
186
+endif
187
+
188
libfreetype = static_library('freetype', base_sources,
189
include_directories: incbase,
190
dependencies: deps,
191
c_args: c_args,
- gnu_symbol_visibility: 'inlineshidden',
192
+ kwargs: kwargs
193
)
194
195
freetype_dep = declare_dependency(
0 commit comments