2014-04-28 23:33:04 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-12-14 20:52:33 +01:00
|
|
|
#
|
|
|
|
#
|
2013-04-19 21:10:42 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-12-14 20:52:33 +01:00
|
|
|
#
|
2013-04-19 21:10:42 +01: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-12-14 20:52:33 +01:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,scn))
|
|
|
|
|
2012-12-21 14:08:27 +01:00
|
|
|
$(eval $(call gb_Library_use_externals,scn,\
|
2013-01-26 21:19:13 +01:00
|
|
|
boost_headers \
|
2012-12-21 14:08:27 +01:00
|
|
|
sane_headers \
|
|
|
|
))
|
|
|
|
|
2011-12-14 20:52:33 +01:00
|
|
|
$(eval $(call gb_Library_set_componentfile,scn,extensions/source/scanner/scn))
|
|
|
|
|
2012-07-02 13:00:50 +01:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,scn))
|
2011-12-14 20:52:33 +01:00
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_Library_use_libraries,scn,\
|
2011-12-14 20:52:33 +01:00
|
|
|
svt \
|
|
|
|
vcl \
|
|
|
|
tl \
|
2014-11-14 11:06:44 +00:00
|
|
|
utl \
|
2011-12-14 20:52:33 +01:00
|
|
|
comphelper \
|
|
|
|
cppuhelper \
|
|
|
|
cppu \
|
|
|
|
sal \
|
2013-04-05 18:40:39 +02:00
|
|
|
i18nlangtag \
|
2012-09-26 23:45:28 +02:00
|
|
|
$(gb_UWINAPI) \
|
2011-12-14 20:52:33 +01:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,scn,\
|
|
|
|
extensions/source/scanner/scnserv \
|
|
|
|
extensions/source/scanner/scanner \
|
|
|
|
))
|
|
|
|
|
2012-12-12 01:07:09 +02:00
|
|
|
ifeq ($(OS),WNT)
|
2011-12-14 20:52:33 +01:00
|
|
|
$(eval $(call gb_Library_add_exception_objects,scn,\
|
|
|
|
extensions/source/scanner/scanwin \
|
|
|
|
))
|
|
|
|
else
|
2012-12-12 01:07:09 +02:00
|
|
|
ifneq ($(OS),WNT)
|
2012-06-02 10:15:04 +02:00
|
|
|
|
2011-12-14 20:52:33 +01:00
|
|
|
$(eval $(call gb_Library_add_exception_objects,scn,\
|
|
|
|
extensions/source/scanner/grid \
|
|
|
|
extensions/source/scanner/sane \
|
|
|
|
extensions/source/scanner/sanedlg \
|
|
|
|
extensions/source/scanner/scanunx \
|
|
|
|
))
|
|
|
|
ifeq ($(OS),LINUX)
|
2012-09-28 12:25:50 +02:00
|
|
|
$(eval $(call gb_Library_add_libs,scn,\
|
|
|
|
-ldl \
|
2011-12-14 20:52:33 +01:00
|
|
|
))
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2013-01-26 22:19:07 +01:00
|
|
|
# vim:set noet sw=4 ts=4:
|