mirror of https://github.com/kiwix/libkiwix.git
31 lines
480 B
Meson
31 lines
480 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',
|
|
subdir:'kiwix/common'
|
|
)
|
|
|
|
if has_ctpp2_dep
|
|
install_headers(
|
|
'ctpp2/CTPP2VMStringLoader.hpp',
|
|
subdir:'kiwix/ctpp2'
|
|
)
|
|
endif
|
|
|