tllist: import static copy under 'subprojects'

This commit is contained in:
Daniel Eklöf 2019-11-24 15:38:31 +01:00
parent 5d409ce276
commit 55d65e049f
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
5 changed files with 603 additions and 0 deletions

View file

@ -0,0 +1,5 @@
project('tllist', 'c', version: '1.0.0', license: 'MIT', meson_version: '>=0.50.0')
tllist = declare_dependency(include_directories: '.')
unittest = executable('unittest', 'test.c', dependencies: [tllist])
test('unittest', unittest)