2014-04-28 23:33:04 +09:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2011-09-19 11:01:15 +02:00
|
|
|
#
|
2013-04-24 17:14:03 +01:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-09-19 11:01:15 +02:00
|
|
|
#
|
2013-04-24 17:14:03 +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-09-19 11:01:15 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,basprov))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_componentfile,basprov,scripting/source/basprov/basprov))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_include,basprov,\
|
|
|
|
$$(INCLUDE) \
|
2012-03-05 19:02:10 +01:00
|
|
|
-I$(SRCDIR)/scripting/source/inc \
|
2011-09-19 11:01:15 +02:00
|
|
|
))
|
|
|
|
|
2013-01-26 21:19:13 +01:00
|
|
|
$(eval $(call gb_Library_use_external,basprov,boost_headers))
|
|
|
|
|
2012-07-02 13:00:50 +01:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,basprov))
|
2011-09-19 11:01:15 +02:00
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_Library_use_libraries,basprov,\
|
2011-09-19 11:01:15 +02:00
|
|
|
comphelper \
|
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
sal \
|
|
|
|
sb \
|
|
|
|
sfx \
|
|
|
|
svl \
|
|
|
|
tl \
|
|
|
|
ucbhelper \
|
|
|
|
vcl \
|
2012-09-26 23:45:28 +02:00
|
|
|
$(gb_UWINAPI) \
|
2011-09-19 11:01:15 +02:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,basprov,\
|
|
|
|
scripting/source/basprov/baslibnode \
|
|
|
|
scripting/source/basprov/basmethnode \
|
|
|
|
scripting/source/basprov/basmodnode \
|
|
|
|
scripting/source/basprov/basprov \
|
|
|
|
scripting/source/basprov/basscript \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|