office-gobmx/editeng/Library_editeng.mk
Tomaž Vajngerl fa351042bc LookupTree for fast autocompletion lookups (by Nico Weyand).
LookupTree is a tree structure for fast autocompletion lookups.
Additionally the tree structure stores word probabilities, so each
autocompletion request returns a result with highest probability.
LatinLookupTree is an implementation which was designed to be even
faster and more efficient latin text, however it works with any kind
of unicode strings.

The tree structure was coded by Nico Weyand, Unicode strings support
and conversion to Libreoffice code structure was done by me.

Change-Id: I6549ee45d0952407b8a070f30ed0598fcb420aa7
2012-07-30 23:43:47 +02:00

159 lines
5.3 KiB
Makefile

# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#*************************************************************************
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# Copyright 2000, 2011 Oracle and/or its affiliates.
#
# OpenOffice.org - a multi-platform office productivity suite
#
# This file is part of OpenOffice.org.
#
# OpenOffice.org is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# only, as published by the Free Software Foundation.
#
# OpenOffice.org is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License version 3 for more details
# (a copy is included in the LICENSE file that accompanied this code).
#
# You should have received a copy of the GNU Lesser General Public License
# version 3 along with OpenOffice.org. If not, see
# <http://www.openoffice.org/license.html>
# for a copy of the LGPLv3 License.
#
#*************************************************************************
$(eval $(call gb_Library_Library,editeng))
$(eval $(call gb_Library_use_package,editeng,editeng_inc))
$(eval $(call gb_Library_set_include,editeng,\
$$(INCLUDE) \
-I$(SRCDIR)/editeng/inc \
))
$(eval $(call gb_Library_add_defs,editeng,\
-DEDITENG_DLLIMPLEMENTATION \
))
$(eval $(call gb_Library_use_sdk_api,editeng))
$(eval $(call gb_Library_add_exception_objects,editeng,\
editeng/source/accessibility/AccessibleComponentBase \
editeng/source/accessibility/AccessibleContextBase \
editeng/source/accessibility/AccessibleEditableTextPara \
editeng/source/accessibility/AccessibleHyperlink \
editeng/source/accessibility/AccessibleImageBullet \
editeng/source/accessibility/AccessibleParaManager \
editeng/source/accessibility/AccessibleSelectionBase \
editeng/source/accessibility/AccessibleStaticTextBase \
editeng/source/accessibility/AccessibleStringWrap \
editeng/source/editeng/editattr \
editeng/source/editeng/editdata \
editeng/source/editeng/editdbg \
editeng/source/editeng/editdoc \
editeng/source/editeng/editeng \
editeng/source/editeng/editobj \
editeng/source/editeng/editsel \
editeng/source/editeng/editundo \
editeng/source/editeng/editview \
editeng/source/editeng/edtspell \
editeng/source/editeng/eehtml \
editeng/source/editeng/eeobj \
editeng/source/editeng/eerdll \
editeng/source/editeng/eertfpar \
editeng/source/editeng/fieldupdater \
editeng/source/editeng/impedit \
editeng/source/editeng/impedit2 \
editeng/source/editeng/impedit3 \
editeng/source/editeng/impedit4 \
editeng/source/editeng/impedit5 \
editeng/source/editeng/textconv \
editeng/source/items/borderline \
editeng/source/items/bulitem \
editeng/source/items/charhiddenitem \
editeng/source/items/flditem \
editeng/source/items/frmitems \
editeng/source/items/itemtype \
editeng/source/items/justifyitem \
editeng/source/items/numitem \
editeng/source/items/optitems \
editeng/source/items/paperinf \
editeng/source/items/paraitem \
editeng/source/items/svdfield \
editeng/source/items/svxfont \
editeng/source/items/textitem \
editeng/source/items/writingmodeitem \
editeng/source/items/xmlcnitm \
editeng/source/misc/acorrcfg \
editeng/source/misc/edtdlg \
editeng/source/misc/forbiddencharacterstable \
editeng/source/misc/hangulhanja \
editeng/source/misc/splwrap \
editeng/source/misc/svxacorr \
editeng/source/misc/SvXMLAutoCorrectExport \
editeng/source/misc/SvXMLAutoCorrectImport \
editeng/source/misc/swafopt \
editeng/source/misc/txtrange \
editeng/source/misc/unolingu \
editeng/source/outliner/outleeng \
editeng/source/outliner/outlin2 \
editeng/source/outliner/outliner \
editeng/source/outliner/outlobj \
editeng/source/outliner/outlundo \
editeng/source/outliner/outlvw \
editeng/source/outliner/paralist \
editeng/source/rtf/rtfgrf \
editeng/source/rtf/rtfitem \
editeng/source/rtf/svxrtf \
editeng/source/uno/unoedhlp \
editeng/source/uno/unoedprx \
editeng/source/uno/unoedsrc \
editeng/source/uno/unofdesc \
editeng/source/uno/unofield \
editeng/source/uno/UnoForbiddenCharsTable \
editeng/source/uno/unofored \
editeng/source/uno/unoforou \
editeng/source/uno/unoipset \
editeng/source/uno/unonrule \
editeng/source/uno/unopracc \
editeng/source/uno/unotext \
editeng/source/uno/unotext2 \
editeng/source/uno/unoviwou \
editeng/source/xml/xmltxtexp \
editeng/source/xml/xmltxtimp \
editeng/source/lookuptree/LatinLookupTree \
editeng/source/lookuptree/LatinTreeNode \
editeng/source/lookuptree/Node \
))
# add libraries to be linked to editeng; again these names need to be given as
# specified in Repository.mk
$(eval $(call gb_Library_use_libraries,editeng,\
xo \
basegfx \
lng \
svt \
tk \
vcl \
svl \
sot \
utl \
tl \
comphelper \
ucbhelper \
cppuhelper \
cppu \
sal \
salhelper \
i18nisolang1 \
i18nutil \
$(gb_STDLIBS) \
))
$(eval $(call gb_Library_use_external,editeng,icuuc))
# vim: set noet sw=4 ts=4: