mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-12 18:20:26 +01:00
fe9c13102d
* 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>
20 lines
361 B
Makefile
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
|