aboutsummaryrefslogtreecommitdiff
path: root/test cases/6 linkshared/meson.build
blob: 3e646f458305c230aa7e38ac80a92ce317091fa7 (plain)
1
2
3
4
5
6
7
project('shared library linking test', 'c')
lib = shared_library('mylib',
 'libfile.c' # Split to different lines before and after the comma to test parser.
 , install : true)
exe = executable('prog', 'main.c', link_with : lib, install : true)

add_test('runtest', exe)