clox/meson.build

6 lines
283 B
Meson
Raw Permalink Normal View History

2024-11-18 05:16:17 +00:00
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)