parent
34cb503c85
commit
cc6be2e43d
6 changed files with 8 additions and 8 deletions
@ -1,5 +0,0 @@ |
||||
project('shared library linking test', 'c', 'cpp') |
||||
|
||||
lib = shared_module('mylib', 'libfile.c') |
||||
|
||||
exe = executable('prog', 'main.c', link_with : lib, install : true) |
@ -0,0 +1,5 @@ |
||||
project('shared library linking test', 'c', 'cpp') |
||||
|
||||
mod = shared_module('mymod', 'libfile.c') |
||||
|
||||
exe = executable('prog', 'main.c', link_with : mod, install : true) |
Loading…
Reference in new issue