36 lines
672 B
Meson
36 lines
672 B
Meson
util = static_library(
|
|
'util',
|
|
'Exception.cxx',
|
|
'Alloc.cxx',
|
|
'UTF8.cxx',
|
|
'HexFormat.cxx',
|
|
'MimeType.cxx',
|
|
'NumberParser.cxx',
|
|
'StringView.cxx',
|
|
'AllocatedString.cxx',
|
|
'TruncateString.cxx',
|
|
'StringStrip.cxx',
|
|
'StringUtil.cxx',
|
|
'StringCompare.cxx',
|
|
'WStringCompare.cxx',
|
|
'DivideString.cxx',
|
|
'SplitString.cxx',
|
|
'FormatString.cxx',
|
|
'Tokenizer.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,
|
|
)
|