Thanks to visit codestin.com Credit goes to github.com
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 75318d2 commit a568b27Copy full SHA for a568b27
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