mirror of
https://github.com/kiwix/libkiwix.git
synced 2025-06-28 05:49:35 +00:00
Mustache templating system is a bit simpler than ctpp2 and ctpp2 is no more maintained (see #189). We are moving to the kainjow's Mustache project (https://github.com/kainjow/Mustache). It simplify a lot our system has it is header only and we don't have to precompile the template. Fix #21
27 lines
421 B
Meson
27 lines
421 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'
|
|
]
|
|
|
|
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'
|
|
)
|
|
|