The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
310 B
11 lines
310 B
project('hidden symbol', 'c') |
|
|
|
if host_machine.system() == 'windows' or host_machine.system() == 'cygwin' |
|
error('MESON_SKIP_TEST -fvisibility=hidden does not work for PE files.') |
|
endif |
|
|
|
l = shared_library('bob', 'bob.c', |
|
gnu_symbol_visibility: 'hidden') |
|
|
|
executable('bobuser', 'bobuser.c', |
|
link_with: l)
|
|
|