2014-04-28 09:33:04 -05:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-11-29 13:59:44 -06:00
|
|
|
#
|
|
|
|
#
|
2013-04-24 11:14:03 -05:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-11-29 13:59:44 -06:00
|
|
|
#
|
2013-04-24 11:14:03 -05:00
|
|
|
# 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/.
|
2011-11-29 13:59:44 -06:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,guesslang))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_componentfile,guesslang,lingucomponent/source/languageguessing/guesslang))
|
|
|
|
|
2013-10-12 11:07:44 -05:00
|
|
|
$(eval $(call gb_Library_use_externals,guesslang,\
|
|
|
|
boost_headers \
|
|
|
|
libexttextcat \
|
|
|
|
))
|
2013-09-19 03:11:49 -05:00
|
|
|
|
2012-07-02 07:00:50 -05:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,guesslang))
|
2011-11-29 13:59:44 -06:00
|
|
|
|
2012-04-07 16:22:08 -05:00
|
|
|
$(eval $(call gb_Library_use_libraries,guesslang,\
|
2011-11-29 13:59:44 -06:00
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
sal \
|
|
|
|
tl \
|
|
|
|
utl \
|
2012-09-26 16:45:28 -05:00
|
|
|
$(gb_UWINAPI) \
|
2011-11-29 13:59:44 -06:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,guesslang,\
|
|
|
|
lingucomponent/source/languageguessing/altstrfunc \
|
|
|
|
lingucomponent/source/languageguessing/guess \
|
|
|
|
lingucomponent/source/languageguessing/guesslang \
|
|
|
|
lingucomponent/source/languageguessing/simpleguesser \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|