2011-08-09 12:12:48 -05:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
2010-04-17 05:41:17 -05:00
|
|
|
#
|
2012-11-12 11:21:24 -06:00
|
|
|
# This file is part of the LibreOffice project.
|
2010-04-17 05:41:17 -05:00
|
|
|
#
|
2012-11-12 11:21:24 -06: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/.
|
2010-04-17 05:41:17 -05:00
|
|
|
#
|
2012-11-12 11:21:24 -06:00
|
|
|
# This file incorporates work covered by the following license notice:
|
2010-04-17 05:41:17 -05:00
|
|
|
#
|
2012-11-12 11:21:24 -06:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed
|
|
|
|
# with this work for additional information regarding copyright
|
|
|
|
# ownership. The ASF licenses this file to you under the Apache
|
|
|
|
# License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
# except in compliance with the License. You may obtain a copy of
|
|
|
|
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
2010-04-17 05:41:17 -05:00
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_Library,fwi))
|
|
|
|
|
2011-04-13 11:11:41 -05:00
|
|
|
$(eval $(call gb_Library_add_defs,fwi,\
|
2010-04-17 05:41:17 -05:00
|
|
|
-DFWI_DLLIMPLEMENTATION \
|
|
|
|
))
|
|
|
|
|
2012-07-02 07:00:50 -05:00
|
|
|
$(eval $(call gb_Library_use_sdk_api,fwi))
|
2011-05-30 11:08:50 -05:00
|
|
|
|
2010-04-17 05:41:17 -05:00
|
|
|
$(eval $(call gb_Library_set_include,fwi,\
|
2012-03-05 12:02:10 -06:00
|
|
|
-I$(SRCDIR)/framework/source/inc \
|
|
|
|
-I$(SRCDIR)/framework/inc \
|
2010-06-21 09:17:24 -05:00
|
|
|
$$(INCLUDE) \
|
2010-04-17 05:41:17 -05:00
|
|
|
))
|
|
|
|
|
2013-01-26 14:19:13 -06:00
|
|
|
$(eval $(call gb_Library_use_external,fwi,boost_headers))
|
|
|
|
|
2012-04-07 16:22:08 -05:00
|
|
|
$(eval $(call gb_Library_use_libraries,fwi,\
|
2010-04-17 05:41:17 -05:00
|
|
|
comphelper \
|
|
|
|
cppu \
|
|
|
|
cppuhelper \
|
2013-04-05 11:40:39 -05:00
|
|
|
i18nlangtag \
|
2010-04-17 05:41:17 -05:00
|
|
|
sal \
|
2010-07-13 07:36:24 -05:00
|
|
|
svl \
|
|
|
|
svt \
|
|
|
|
tk \
|
|
|
|
tl \
|
2010-04-17 05:41:17 -05:00
|
|
|
utl \
|
|
|
|
vcl \
|
2012-09-26 16:45:28 -05:00
|
|
|
$(gb_UWINAPI) \
|
2010-04-17 05:41:17 -05:00
|
|
|
))
|
|
|
|
|
|
|
|
$(eval $(call gb_Library_add_exception_objects,fwi,\
|
|
|
|
framework/source/fwi/classes/converter \
|
|
|
|
framework/source/fwi/classes/propertysethelper \
|
|
|
|
framework/source/fwi/classes/protocolhandlercache \
|
|
|
|
framework/source/fwi/helper/mischelper \
|
|
|
|
framework/source/fwi/helper/networkdomain \
|
|
|
|
framework/source/fwi/helper/shareablemutex \
|
|
|
|
framework/source/fwi/jobs/configaccess \
|
|
|
|
framework/source/fwi/jobs/jobconst \
|
|
|
|
framework/source/fwi/threadhelp/lockhelper \
|
|
|
|
framework/source/fwi/threadhelp/transactionmanager \
|
|
|
|
framework/source/fwi/uielement/constitemcontainer \
|
|
|
|
framework/source/fwi/uielement/itemcontainer \
|
|
|
|
framework/source/fwi/uielement/rootitemcontainer \
|
|
|
|
))
|
|
|
|
|
|
|
|
ifeq ($(OS),WNT)
|
2012-09-28 08:31:46 -05:00
|
|
|
$(eval $(call gb_Library_use_system_win32_libs,fwi,\
|
2011-01-05 07:55:15 -06:00
|
|
|
advapi32 \
|
|
|
|
))
|
|
|
|
endif
|
2011-02-02 10:05:04 -06:00
|
|
|
|
2010-04-17 05:41:17 -05:00
|
|
|
# vim: set noet sw=4 ts=4:
|