# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- # # Version: MPL 1.1 / GPLv3+ / LGPLv3+ # # The contents of this file are subject to the Mozilla Public License Version # 1.1 (the "License"); you may not use this file except in compliance with # the License or as specified alternatively below. You may obtain a copy of # the License at http://www.mozilla.org/MPL/ # # Software distributed under the License is distributed on an "AS IS" basis, # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License # for the specific language governing rights and limitations under the # License. # # Major Contributor(s): # Copyright (C) 2012 Matúš Kukan (initial developer) # # All Rights Reserved. # # For minor contributions see the git repository. # # Alternatively, the contents of this file may be used under the terms of # either the GNU General Public License Version 3 or later (the "GPLv3+"), or # the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), # in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable # instead of those above. $(eval $(call gb_Library_Library,emboleobj)) $(eval $(call gb_Library_set_componentfile,emboleobj,embeddedobj/source/msole/emboleobj$(if $(filter WNT,$(OS)),.windows))) $(eval $(call gb_Library_set_include,emboleobj,\ -I$(SRCDIR)/embeddedobj/source/inc \ $$(INCLUDE) \ )) $(eval $(call gb_Library_use_external,emboleobj,boost_headers)) $(eval $(call gb_Library_use_sdk_api,emboleobj)) $(eval $(call gb_Library_use_libraries,emboleobj,\ comphelper \ cppu \ cppuhelper \ sal \ tl \ utl \ $(gb_UWINAPI) \ )) $(eval $(call gb_Library_add_exception_objects,emboleobj,\ embeddedobj/source/msole/closepreventer \ embeddedobj/source/msole/oleembed \ embeddedobj/source/msole/olemisc \ embeddedobj/source/msole/olepersist \ embeddedobj/source/msole/oleregister \ embeddedobj/source/msole/olevisual \ embeddedobj/source/msole/ownview \ embeddedobj/source/msole/xolefactory \ )) ifeq ($(OS),WNT) $(eval $(call gb_Library_use_libraries,emboleobj,\ embobj \ )) $(eval $(call gb_Library_use_system_win32_libs,emboleobj,\ gdi32 \ ole32 \ oleaut32 \ uuid \ )) $(eval $(call gb_Library_add_exception_objects,emboleobj,\ embeddedobj/source/msole/advisesink \ embeddedobj/source/msole/graphconvert \ embeddedobj/source/msole/olecomponent \ embeddedobj/source/msole/olewrapclient \ embeddedobj/source/msole/xdialogcreator \ )) endif # vim: set noet sw=4 ts=4: /collabora/co-23.05'>distro/collabora/co-23.05 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/stoc
AgeCommit message (Expand)Author
2014-11-18cppuhelper: clean up public headers with include-what-you-useMichael Stahl
2014-11-17sal: clean up public headers with include-what-you-useMichael Stahl
2014-11-14fdo#86023 - O[U]String needs a 'clear' methodBrij Mohan Lal Srivastava
2014-11-12Fix common typos. No automatic tools. Handmade…Andrea Gelmini
2014-11-12java: convert fields to local variables where possibleNoel Grandin
2014-11-06Bin unused include files, thanks to Andrea GelminiTor Lillqvist
2014-10-31Removed duplicated includesAndrea Gelmini
2014-10-29remove unnecessary 'using namespace rtl' declarationsNoel Grandin
2014-10-07java: remove useless overriding methodsNoel Grandin
2014-09-29loplugin: cstylecastNoel Grandin
2014-09-18fdo#83512 Make use of OUStringHash and OStringHashDaniel Sikeler
2014-08-14java: remove commented out codeNoel Grandin
2014-08-12java: add @Override annotation to overriding methodsNoel Grandin
2014-08-08java: remove unused importsNoel Grandin
2014-08-08java: remove unused variablesNoel Grandin
2014-08-07Avoid incomplete type in fn sig to keep ubsan's RTTI-based checks happyStephan Bergmann
2014-08-05java: remove commented out codeNoel Grandin
2014-08-05java: remove various unused variablesNoel Grandin
2014-07-24use BOOST_STATIC_ASSERT for sizeof checkMichael Stahl
2014-07-07DBG_ASSERT->assert when followed by dereferenceCaolán McNamara