5 lines
162 B
Meson
5 lines
162 B
Meson
![]() |
project('shared library linking test', 'c', 'cpp')
|
||
|
|
||
|
mod = shared_module('mymod', 'libfile.c')
|
||
|
|
||
|
exe = executable('prog', 'main.c', link_with : mod, install : true)
|