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

libzim only know how to read embedded full text index in a zim file. This is nice as we want to embedded the full text index in zim file and not have separated full text index. However, we still have some zim+separated index we have to read. So we have to support the search in separated index for a while.
32 lines
499 B
Meson
32 lines
499 B
Meson
headers = [
|
|
'library.h',
|
|
'manager.h',
|
|
'reader.h',
|
|
'searcher.h'
|
|
]
|
|
|
|
if xapian_dep.found()
|
|
headers += ['xapianSearcher.h']
|
|
endif
|
|
|
|
install_headers(headers, subdir:'kiwix')
|
|
|
|
install_headers(
|
|
'common/base64.h',
|
|
'common/networkTools.h',
|
|
'common/otherTools.h',
|
|
'common/pathTools.h',
|
|
'common/regexTools.h',
|
|
'common/stringTools.h',
|
|
'common/tree.h',
|
|
subdir:'kiwix/common'
|
|
)
|
|
|
|
if has_ctpp2_dep
|
|
install_headers(
|
|
'ctpp2/CTPP2VMStringLoader.hpp',
|
|
subdir:'kiwix/ctpp2'
|
|
)
|
|
endif
|
|
|