poco/PocoDoc/Makefile
Lara Dzivdzanovic fe9c13102d
feat(PocoDoc): search support (#4494)
* feat(PocoDoc): search support

* feat(PocoDoc): enable FTS5 for search support

* feat(PocoDoc): enable FTS5

* chore(pocodoc): edit comment

* fix(StreamCopier): add argument to seekg

* enable searchIndex through the command line

* Add minor updates for search support

* Update of vs90 and regeneration of vs160 and vs170 projects

* Enhance configure script:FTS5 support for SQLite in --sqlite-fts flag

* Add tests for FTS3 and FTS5

* regeneration of vs160 and vs170 projects

* added missing lib data in CMake

* Update vs90 project and regenerate vs160 and vs170 projects with added Data include paths

* Revrting ProGen_vs170.vcxproj

* Revert ProGen in vs170 and regenerate PocoDoc vs160/vs170 projects to include updated Data path

* added missing includes

---------

Co-authored-by: Lara <lara@debian-gnu-linux-12.localdomain>
2024-11-11 16:53:05 +01:00

20 lines
361 B
Makefile

#
# Makefile
#
# Makefile for Poco PocoDoc
#
include $(POCO_BASE)/build/rules/global
objects = DocWriter PocoDoc
target = PocoDoc
target_version = 1
target_libs = PocoCppParser PocoDataSQLite PocoData PocoFoundation PocoXML PocoUtil
ifdef POCO_ENABLE_SQLITE_FTS5
CXXFLAGS += -DPOCO_ENABLE_SQLITE_FTS5
endif
include $(POCO_BASE)/build/rules/exec