diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:48:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 05:48:59 +0000 |
commit | c484829272cd13a738e35412498e12f2c9a194ac (patch) | |
tree | a1f5ec09629ee895bd3963fa8820b45f2f4c574b /include/orcus/Makefile.am | |
parent | Initial commit. (diff) | |
download | liborcus-c484829272cd13a738e35412498e12f2c9a194ac.tar.xz liborcus-c484829272cd13a738e35412498e12f2c9a194ac.zip |
Adding upstream version 0.19.2.upstream/0.19.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'include/orcus/Makefile.am')
-rw-r--r-- | include/orcus/Makefile.am | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/include/orcus/Makefile.am b/include/orcus/Makefile.am new file mode 100644 index 0000000..865e8e6 --- /dev/null +++ b/include/orcus/Makefile.am @@ -0,0 +1,88 @@ +SUBDIRS = detail spreadsheet + +liborcusdir = $(includedir)/liborcus-@ORCUS_API_VERSION@/orcus +liborcus_HEADERS = \ + base64.hpp \ + cell_buffer.hpp \ + config.hpp \ + css_document_tree.hpp \ + css_parser.hpp \ + css_parser_base.hpp \ + css_selector.hpp \ + css_types.hpp \ + csv_parser.hpp \ + csv_parser_base.hpp \ + dom_tree.hpp \ + env.hpp \ + exception.hpp \ + format_detection.hpp \ + info.hpp \ + interface.hpp \ + json_document_tree.hpp \ + json_global.hpp \ + json_parser.hpp \ + json_parser_base.hpp \ + json_parser_thread.hpp \ + json_structure_tree.hpp \ + measurement.hpp \ + orcus_csv.hpp \ + orcus_json.hpp \ + orcus_xml.hpp \ + parser_base.hpp \ + parser_global.hpp \ + sax_parser.hpp \ + sax_parser_base.hpp \ + sax_ns_parser.hpp \ + sax_token_parser.hpp \ + sax_token_parser_thread.hpp \ + stream.hpp \ + string_pool.hpp \ + threaded_json_parser.hpp \ + threaded_sax_token_parser.hpp \ + tokens.hpp \ + types.hpp \ + xml_namespace.hpp \ + xml_structure_tree.hpp \ + xml_writer.hpp \ + yaml_document_tree.hpp \ + yaml_parser.hpp \ + yaml_parser_base.hpp \ + zip_archive.hpp \ + zip_archive_stream.hpp + +if WITH_ODS_FILTER + +liborcus_HEADERS += \ + orcus_ods.hpp \ + orcus_import_ods.hpp + +endif # WITH_ODS_FILTER + +if WITH_XLSX_FILTER + +liborcus_HEADERS += \ + orcus_xlsx.hpp \ + orcus_import_xlsx.hpp + +endif # WITH_XLSX_FILTER + +if WITH_XLS_XML_FILTER + +liborcus_HEADERS += \ + orcus_xls_xml.hpp + +endif # WITH_XLS_XML_FILTER + +if WITH_GNUMERIC_FILTER + +liborcus_HEADERS += \ + orcus_gnumeric.hpp + +endif # WITH_GNUMERIC_FILTER + +if WITH_PARQUET_FILTER + +liborcus_HEADERS += \ + orcus_parquet.hpp + +endif # WITH_PARQUET_FILTER |