forked from lix-project/lix
113 lines
1.9 KiB
Meson
113 lines
1.9 KiB
Meson
|
libutil_sources = files(
|
||
|
'archive.cc',
|
||
|
'args.cc',
|
||
|
'canon-path.cc',
|
||
|
'cgroup.cc',
|
||
|
'compression.cc',
|
||
|
'compute-levels.cc',
|
||
|
'config.cc',
|
||
|
'english.cc',
|
||
|
'error.cc',
|
||
|
'exit.cc',
|
||
|
'experimental-features.cc',
|
||
|
'filesystem.cc',
|
||
|
'git.cc',
|
||
|
'hash.cc',
|
||
|
'hilite.cc',
|
||
|
'json-utils.cc',
|
||
|
'logging.cc',
|
||
|
'namespaces.cc',
|
||
|
'position.cc',
|
||
|
'references.cc',
|
||
|
'serialise.cc',
|
||
|
'signals.cc',
|
||
|
'source-path.cc',
|
||
|
'suggestions.cc',
|
||
|
'tarfile.cc',
|
||
|
'thread-pool.cc',
|
||
|
'url.cc',
|
||
|
'util.cc',
|
||
|
'xml-writer.cc',
|
||
|
)
|
||
|
|
||
|
libutil_headers = files(
|
||
|
'abstract-setting-to-json.hh',
|
||
|
'ansicolor.hh',
|
||
|
'archive.hh',
|
||
|
'args.hh',
|
||
|
'box_ptr.hh',
|
||
|
'callback.hh',
|
||
|
'canon-path.hh',
|
||
|
'cgroup.hh',
|
||
|
'chunked-vector.hh',
|
||
|
'closure.hh',
|
||
|
'comparator.hh',
|
||
|
'compression.hh',
|
||
|
'compute-levels.hh',
|
||
|
'config-impl.hh',
|
||
|
'config.hh',
|
||
|
'english.hh',
|
||
|
'error.hh',
|
||
|
'exit.hh',
|
||
|
'experimental-features.hh',
|
||
|
'finally.hh',
|
||
|
'fmt.hh',
|
||
|
'git.hh',
|
||
|
'hash.hh',
|
||
|
'hilite.hh',
|
||
|
'input-accessor.hh',
|
||
|
'json-impls.hh',
|
||
|
'json-utils.hh',
|
||
|
'logging.hh',
|
||
|
'lru-cache.hh',
|
||
|
'monitor-fd.hh',
|
||
|
'namespaces.hh',
|
||
|
'pool.hh',
|
||
|
'position.hh',
|
||
|
'ref.hh',
|
||
|
'references.hh',
|
||
|
'regex-combinators.hh',
|
||
|
'repair-flag.hh',
|
||
|
'serialise.hh',
|
||
|
'signals.hh',
|
||
|
'source-path.hh',
|
||
|
'split.hh',
|
||
|
'suggestions.hh',
|
||
|
'sync.hh',
|
||
|
'tarfile.hh',
|
||
|
'thread-pool.hh',
|
||
|
'topo-sort.hh',
|
||
|
'types.hh',
|
||
|
'url-parts.hh',
|
||
|
'url.hh',
|
||
|
'util.hh',
|
||
|
'variant-wrapper.hh',
|
||
|
'xml-writer.hh',
|
||
|
)
|
||
|
|
||
|
libutil = library(
|
||
|
'nixutil',
|
||
|
libutil_sources,
|
||
|
dependencies : [
|
||
|
aws_sdk,
|
||
|
aws_s3,
|
||
|
boehm,
|
||
|
boost,
|
||
|
cpuid,
|
||
|
seccomp,
|
||
|
libarchive,
|
||
|
brotli,
|
||
|
openssl,
|
||
|
],
|
||
|
implicit_include_directories : true,
|
||
|
install : true,
|
||
|
)
|
||
|
|
||
|
install_headers(libutil_headers, subdir : 'nix', preserve_path : true)
|
||
|
|
||
|
# Used by libstore and libfetchers.
|
||
|
liblixutil = declare_dependency(
|
||
|
include_directories : include_directories('.'),
|
||
|
link_with : libutil
|
||
|
)
|