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

- No more dependency to reswrap binary (everything is done in python) - Resource strings can be directly accessed. As side effect, it add a check at compilation if the resource is declared and compiled in the binary. - The resource content can be overwritten at runtime with a env variable. There is also few clean in the static as some files shoul be in the tools directory. The compile_resource script is install to let other project use it.
31 lines
502 B
Meson
31 lines
502 B
Meson
headers = [
|
|
'indexer.h',
|
|
'library.h',
|
|
'manager.h',
|
|
'reader.h',
|
|
'searcher.h'
|
|
]
|
|
|
|
if xapian_dep.found()
|
|
headers += ['xapianIndexer.h', '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'
|
|
)
|
|
|
|
|
|
install_headers(
|
|
'ctpp2/CTPP2VMStringLoader.hpp',
|
|
subdir:'kiwix/ctpp2'
|
|
)
|