diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
commit | ed5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch) | |
tree | 7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /xmlhelp/Library_ucpchelp1.mk | |
parent | Initial commit. (diff) | |
download | libreoffice-upstream/4%7.4.7.tar.xz libreoffice-upstream/4%7.4.7.zip |
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'xmlhelp/Library_ucpchelp1.mk')
-rw-r--r-- | xmlhelp/Library_ucpchelp1.mk | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/xmlhelp/Library_ucpchelp1.mk b/xmlhelp/Library_ucpchelp1.mk new file mode 100644 index 000000000..087a1da2d --- /dev/null +++ b/xmlhelp/Library_ucpchelp1.mk @@ -0,0 +1,62 @@ +# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# + +$(eval $(call gb_Library_Library,ucpchelp1)) + +$(eval $(call gb_Library_set_componentfile,ucpchelp1,xmlhelp/util/ucpchelp1,services)) + +$(eval $(call gb_Library_set_include,ucpchelp1,\ + -I$(SRCDIR)/xmlhelp/source/cxxhelp/inc \ + $$(INCLUDE) \ +)) + +$(eval $(call gb_Library_use_custom_headers,ucpchelp1, \ + officecfg/registry \ +)) + +$(eval $(call gb_Library_use_sdk_api,ucpchelp1)) + +$(eval $(call gb_Library_use_externals,ucpchelp1,\ + boost_headers \ + clucene \ + expat \ + libxml2 \ + libxslt \ +)) + +$(eval $(call gb_Library_use_libraries,ucpchelp1,\ + comphelper \ + cppu \ + cppuhelper \ + helplinker \ + sal \ + tl \ + ucbhelper \ + utl \ + i18nlangtag \ + vcl \ +)) + +$(eval $(call gb_Library_add_exception_objects,ucpchelp1,\ + xmlhelp/source/cxxhelp/provider/content \ + xmlhelp/source/cxxhelp/provider/contentcaps \ + xmlhelp/source/cxxhelp/provider/databases \ + xmlhelp/source/cxxhelp/provider/db \ + xmlhelp/source/cxxhelp/provider/inputstream \ + xmlhelp/source/cxxhelp/provider/provider \ + xmlhelp/source/cxxhelp/provider/resultset \ + xmlhelp/source/cxxhelp/provider/resultsetbase \ + xmlhelp/source/cxxhelp/provider/resultsetforquery \ + xmlhelp/source/cxxhelp/provider/resultsetforroot \ + xmlhelp/source/cxxhelp/provider/urlparameter \ + xmlhelp/source/treeview/tvfactory \ + xmlhelp/source/treeview/tvread \ +)) + +# vim: set shiftwidth=4 tabstop=4 noexpandtab: |