tllist: finally, a static copy of external/tllist

This commit is contained in:
Daniel Eklöf 2019-11-24 15:19:04 +01:00
parent 6875bea64a
commit 928c7ff4d3
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)