393d57b387
A new NumberParser library based on std::from_chars() will be added.
35 lines
650 B
Meson
35 lines
650 B
Meson
util = static_library(
|
|
'util',
|
|
'Exception.cxx',
|
|
'UTF8.cxx',
|
|
'MimeType.cxx',
|
|
'CNumberParser.cxx',
|
|
'TruncateString.cxx',
|
|
'StringStrip.cxx',
|
|
'StringUtil.cxx',
|
|
'StringCompare.cxx',
|
|
'WStringCompare.cxx',
|
|
'DivideString.cxx',
|
|
'SplitString.cxx',
|
|
'Tokenizer.cxx',
|
|
'UriExtract.cxx',
|
|
'UriQueryParser.cxx',
|
|
'UriRelative.cxx',
|
|
'UriUtil.cxx',
|
|
'LazyRandomEngine.cxx',
|
|
'HugeAllocator.cxx',
|
|
'PeakBuffer.cxx',
|
|
'PrintException.cxx',
|
|
'SparseBuffer.cxx',
|
|
'ByteReverse.cxx',
|
|
'format.c',
|
|
'BitReverse.cxx',
|
|
'djb_hash.cxx',
|
|
'Serial.cxx',
|
|
include_directories: inc,
|
|
)
|
|
|
|
util_dep = declare_dependency(
|
|
link_with: util,
|
|
)
|