meson/test cases/unit/30 shared_mod linking/meson.build

5 lines
162 B
Meson
Raw Normal View History

2018-03-29 17:13:56 +08:00
project('shared library linking test', 'c', 'cpp')
mod = shared_module('mymod', 'libfile.c')
exe = executable('prog', 'main.c', link_with : mod, install : true)