summaryrefslogtreecommitdiff
path: root/filter/Library_textfd.mk
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2012-05-25 00:22:58 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2012-05-25 02:04:18 -0400
commit8b8e24544793f4ec6f61edb7ce8ac10bf6bb0981 (patch)
treef66cc554cb9857438f42954d992fbd52dd674efb /filter/Library_textfd.mk
parent427b50c05f18de474dd5b88b705951240335beac (diff)
Do the real detection work for plain text & forgot to add a makefile.
Change-Id: I95edb869b00764464d91e1f396da1bb648b74515
Diffstat (limited to 'filter/Library_textfd.mk')
-rw-r--r--filter/Library_textfd.mk58
1 files changed, 58 insertions, 0 deletions
diff --git a/filter/Library_textfd.mk b/filter/Library_textfd.mk
new file mode 100644
index 000000000000..ac7303aa1905
--- /dev/null
+++ b/filter/Library_textfd.mk
@@ -0,0 +1,58 @@
+# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
+#*************************************************************************
+# Version: MPL 1.1 / GPLv3+ / LGPLv3+
+#
+# The contents of this file are subject to the Mozilla Public License Version
+# 1.1 (the "License"); you may not use this file except in compliance with
+# the License or as specified alternatively below. You may obtain a copy of
+# the License at http://www.mozilla.org/MPL/
+#
+# Software distributed under the License is distributed on an "AS IS" basis,
+# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+# for the specific language governing rights and limitations under the
+# License.
+#
+# The Initial Developer of the Original Code is
+# Kohei Yoshida <kohei.yoshida@suse.com>
+# Portions created by the Initial Developer are Copyright (C) 2011 the
+# Initial Developer. All Rights Reserved.
+#
+# Major Contributor(s):
+#
+# For minor contributions see the git repository.
+#
+# Alternatively, the contents of this file may be used under the terms of
+# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
+# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
+# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+# instead of those above.
+#*************************************************************************
+
+$(eval $(call gb_Library_Library,textfd))
+
+$(eval $(call gb_Library_set_componentfile,textfd,filter/source/textfilterdetect/textfd))
+
+$(eval $(call gb_Library_use_api,textfd,\
+ udkapi \
+ offapi \
+))
+
+$(eval $(call gb_Library_set_include,textfd,\
+ $$(INCLUDE) \
+))
+
+$(eval $(call gb_Library_use_libraries,textfd,\
+ ucbhelper \
+ cppuhelper \
+ cppu \
+ sal \
+ tl \
+ $(gb_STDLIBS) \
+))
+
+$(eval $(call gb_Library_add_exception_objects,textfd,\
+ filter/source/textfilterdetect/fdcomp \
+ filter/source/textfilterdetect/filterdetect \
+))
+
+# vim: set noet sw=4 ts=4: