6 lines
283 B
Meson
6 lines
283 B
Meson
|
project('clox', 'c')
|
||
|
incdir = include_directories('include')
|
||
|
dll_lib = library('dll', 'src/doubly-linked-list.c', include_directories: incdir)
|
||
|
dll_test = executable('dll_test', 'test/dll.c', include_directories: incdir, link_with: dll_lib)
|
||
|
test('doubly-linked list tests', dll_test)
|