94592c1406
So long, autotools! This is my last MPD related project to migrate away from it. It has its strengths, but also very obvious weaknesses and weirdnesses. Today, many of its quirks are not needed anymore, and are cumbersome and slow. Now welcome our new Meson overlords!
38 lines
712 B
Meson
38 lines
712 B
Meson
util = static_library(
|
|
'util',
|
|
'Exception.cxx',
|
|
'Alloc.cxx',
|
|
'UTF8.cxx',
|
|
'HexFormat.cxx',
|
|
'MimeType.cxx',
|
|
'StringView.cxx',
|
|
'AllocatedString.cxx',
|
|
'TruncateString.cxx',
|
|
'StringStrip.cxx',
|
|
'StringUtil.cxx',
|
|
'StringCompare.cxx',
|
|
'WStringCompare.cxx',
|
|
'DivideString.cxx',
|
|
'SplitString.cxx',
|
|
'FormatString.cxx',
|
|
'Tokenizer.cxx',
|
|
'TimeParser.cxx',
|
|
'TimeConvert.cxx',
|
|
'TimeISO8601.cxx',
|
|
'UriUtil.cxx',
|
|
'LazyRandomEngine.cxx',
|
|
'HugeAllocator.cxx',
|
|
'PeakBuffer.cxx',
|
|
'PrintException.cxx',
|
|
'SparseBuffer.cxx',
|
|
'OptionParser.cxx',
|
|
'ByteReverse.cxx',
|
|
'format.c',
|
|
'bit_reverse.c',
|
|
include_directories: inc,
|
|
)
|
|
|
|
util_dep = declare_dependency(
|
|
link_with: util,
|
|
)
|