mirror of
https://github.com/kiwix/libkiwix.git
synced 2025-08-03 10:16:03 -04:00

This class is used to map an id (uuid) to a name (potentially human readable). This will be use by the server to or renderer to use a different "name" than the id. The default NameMapper provided use the id as a name.
30 lines
469 B
Meson
30 lines
469 B
Meson
headers = [
|
|
'book.h',
|
|
'bookmark.h',
|
|
'common.h',
|
|
'library.h',
|
|
'manager.h',
|
|
'libxml_dumper.h',
|
|
'opds_dumper.h',
|
|
'downloader.h',
|
|
'reader.h',
|
|
'entry.h',
|
|
'searcher.h',
|
|
'kiwixserve.h',
|
|
'name_mapper.h'
|
|
]
|
|
|
|
install_headers(headers, subdir:'kiwix')
|
|
|
|
install_headers(
|
|
'tools/base64.h',
|
|
'tools/networkTools.h',
|
|
'tools/otherTools.h',
|
|
'tools/pathTools.h',
|
|
'tools/regexTools.h',
|
|
'tools/stringTools.h',
|
|
'tools/lock.h',
|
|
subdir:'kiwix/tools'
|
|
)
|
|
|