2011-09-19 11:01:15 +02:00
|
|
|
# -*- Mode: makefile; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
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,stringresource))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_componentfile,stringresource,scripting/source/stringresource/stringresource))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_set_include,stringresource,\
|
|
|
|
$$(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,stringresource,boost_headers))
|
|
|
|
|
2012-07-02 13:00:50 +01:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,stringresource))
|
2011-09-19 11:01:15 +02:00
|
|
|
|
2012-04-07 23:22:08 +02:00
|
|
|
$(eval $(call gb_Library_use_libraries,stringresource,\
|
2011-09-19 11:01:15 +02:00
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
|
|
|
sal \
|
|
|
|
tl \
|
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,stringresource,\
|
|
|
|
scripting/source/stringresource/stringresource \
|
|
|
|
))
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|