summaryrefslogtreecommitdiff
path: root/scripting/Library_stringresource.mk
blob: c70a054d1bc61c6d27049891a94d6efef9cb80fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
#
# 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/.
#

$(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) \
	-I$(SRCDIR)/scripting/source/inc \
))

$(eval $(call gb_Library_use_external,stringresource,boost_headers))

$(eval $(call gb_Library_use_sdk_api,stringresource))

$(eval $(call gb_Library_use_libraries,stringresource,\
	comphelper \
	cppu \
	cppuhelper \
	sal \
	tl \
	i18nlangtag \
	$(gb_UWINAPI) \
))

$(eval $(call gb_Library_add_exception_objects,stringresource,\
	scripting/source/stringresource/stringresource \
))

# vim: set noet sw=4 ts=4:
x.mk?h=cp-6.4-30&id=3b65852f37f1c8daf8c5c0af1d810c68cc71d8e3'>gbuild: add support for building against MSVC debug runtimeMichael Stahl Mainly this means using /MDd instead of /MD and /MTd instead of /MT in the CFLAGS, and also re-mapping of .lib files to ones with "d". Change-Id: Ifc56b53a66d5eb522c1695a34d68b08cad1d8338 2013-01-26gbuild: fix silly "expandtabs" in makefile VIM modelinesMichael Stahl Change-Id: I54d8923ad315e8041fd3904da3a29f1a7a8c8b16 2012-10-07fix extensions build with Win8 SDKPeter Foley Change-Id: I7c38722c98300f419e6129b46c89b68f46ce4173 2012-09-28gbuild: gb_Library_PLAINLIBS_NONE cleanup for WNT:Michael Stahl add a new gb_LinkTarget_use_system_win32_libs to abstract different linker options on MSVC and GCC. Change-Id: Ic9bf2545f59bf7871e6fc06b290c486ddfbec03d 2012-07-02targetted improvement of UNO API includes / usageMichael Meeks 2012-05-09gbuild: use mixed paths on cygwinMatúš Kukan make 3.82 understands mixed paths, so use them. This allows us to get rid of evil in BuildDirs.mk. Hopefully, life will be simpler now. Change-Id: I I I641f28c6af1948963f7004f8071af62e21caabb3 2012-04-09gbuild: simplify and unify gb_Helper_*native*Matúš Kukan 2012-04-08gbuild: "use" vs. "add":Michael Stahl Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target) 2012-04-04extensions: use CustomTarget makefilesMatúš Kukan