You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
587 B
Meson
32 lines
587 B
Meson
util = static_library(
|
|
'util',
|
|
'Exception.cxx',
|
|
'UTF8.cxx',
|
|
'MimeType.cxx',
|
|
'TruncateString.cxx',
|
|
'StringStrip.cxx',
|
|
'StringUtil.cxx',
|
|
'StringCompare.cxx',
|
|
'WStringCompare.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',
|
|
'Serial.cxx',
|
|
include_directories: inc,
|
|
)
|
|
|
|
util_dep = declare_dependency(
|
|
link_with: util,
|
|
)
|