# -*- 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,frm)) $(eval $(call gb_Library_set_include,frm,\ $$(INCLUDE) \ -I$(SRCDIR)/forms/source/inc \ -I$(SRCDIR)/forms/source/solar/inc \ )) $(eval $(call gb_Library_use_api,frm,\ offapi \ oovbaapi \ udkapi \ )) $(eval $(call gb_Library_use_libraries,frm,\ comphelper \ cppu \ cppuhelper \ dbtools \ editeng \ i18nlangtag \ sal \ salhelper \ sfx \ svl \ svt \ svxcore \ tk \ tl \ ucbhelper \ utl \ vcl \ $(gb_UWINAPI) \ )) $(eval $(call gb_Library_use_externals,frm,\ boost_headers \ icui18n \ icuuc \ icu_headers \ libxml2 \ )) $(eval $(call gb_Library_set_componentfile,frm,forms/util/frm)) $(eval $(call gb_Library_add_exception_objects,frm,\ forms/source/component/Button \ forms/source/component/cachedrowset \ forms/source/component/CheckBox \ forms/source/component/clickableimage \ forms/source/component/cloneable \ forms/source/component/Columns \ forms/source/component/ComboBox \ forms/source/component/Currency \ forms/source/component/DatabaseForm \ forms/source/component/Date \ forms/source/component/EditBase \ forms/source/component/Edit \ forms/source/component/entrylisthelper \ forms/source/component/errorbroadcaster \ forms/source/component/EventThread \ forms/source/component/File \ forms/source/component/Filter \ forms/source/component/findpos \ forms/source/component/FixedText \ forms/source/component/FormattedField \ forms/source/component/FormattedFieldWrapper \ forms/source/component/FormComponent \ forms/source/component/formcontrolfont \ forms/source/component/FormsCollection \ forms/source/component/Grid \ forms/source/component/GroupBox \ forms/source/component/GroupManager \ forms/source/component/Hidden \ forms/source/component/ImageButton \ forms/source/component/ImageControl \ forms/source/component/imgprod \ forms/source/component/ListBox \ forms/source/component/navigationbar \ forms/source/component/Numeric \ forms/source/component/Pattern \ forms/source/component/propertybaghelper \ forms/source/component/RadioButton \ forms/source/component/refvaluecomponent \ forms/source/component/scrollbar \ forms/source/component/spinbutton \ forms/source/component/Time \ forms/source/helper/commanddescriptionprovider \ forms/source/helper/commandimageprovider \ forms/source/helper/controlfeatureinterception \ forms/source/helper/formnavigation \ forms/source/helper/resettable \ forms/source/helper/urltransformer \ forms/source/helper/windowstateguard \ forms/source/misc/componenttools \ forms/source/misc/frm_module \ forms/source/misc/ids \ forms/source/misc/InterfaceContainer \ forms/source/misc/limitedformats \ forms/source/misc/listenercontainers \ forms/source/misc/property \ forms/source/misc/services \ forms/source/resource/frm_resource \ forms/source/richtext/attributedispatcher \ forms/source/richtext/clipboarddispatcher \ forms/source/richtext/featuredispatcher \ forms/source/richtext/parametrizedattributedispatcher \ forms/source/richtext/richtextcontrol \ forms/source/richtext/richtextengine \ forms/source/richtext/richtextimplcontrol \ forms/source/richtext/richtextmodel \ forms/source/richtext/richtextunowrapper \ forms/source/richtext/richtextvclcontrol \ forms/source/richtext/richtextviewport \ forms/source/richtext/rtattributehandler \ forms/source/richtext/specialdispatchers \ forms/source/runtime/formoperations \ forms/source/solar/component/navbarcontrol \ forms/source/solar/control/navtoolbar \ forms/source/xforms/binding \ forms/source/xforms/boolexpression \ forms/source/xforms/computedexpression \ forms/source/xforms/convert \ forms/source/xforms/datatyperepository \ forms/source/xforms/datatypes \ forms/source/xforms/enumeration \ forms/source/xforms/mip \ forms/source/xforms/model \ forms/source/xforms/model_ui \ forms/source/xforms/pathexpression \ forms/source/xforms/propertysetbase \ forms/source/xforms/resourcehelper \ forms/source/xforms/submission \ forms/source/xforms/submission/replace \ forms/source/xforms/submission/serialization_app_xml \ forms/source/xforms/submission/serialization_urlencoded \ forms/source/xforms/submission/submission_get \ forms/source/xforms/submission/submission_post \ forms/source/xforms/submission/submission_put \ forms/source/xforms/unohelper \ forms/source/xforms/xformsevent \ forms/source/xforms/xforms_services \ forms/source/xforms/xmlhelper \ forms/source/xforms/xpathlib/extension \ forms/source/xforms/xpathlib/xpathlib \ )) # vim: set noet sw=4 ts=4: riba/escriba-5.2.1'>distro/escriba/escriba-5.2.1 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/setup_native/Library_shlxtmsi.mk
AgeCommit message (Collapse)Author
2019-04-04Drop UNICODE/_UNICODE definesMike Kaganski
The code is using expicit (mostly W) Windows API, and is independent from the macro. Removing it here allows to catch places where some UNICODE-dependent macro is used unintentionally. Change-Id: I5dff40aecfc3c3dc7fc4cf7271a995a675943a45 Reviewed-on: https://gerrit.libreoffice.org/70237 Reviewed-by: Michael Stahl <Michael.Stahl@cib.de> Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Mike Kaganski <mike.kaganski@collabora.com>
2018-09-28tdf#120099 Reintroduce .def filesStephan Bergmann
...that had been removed with 28b4f4aeaf160c7721dfecf5bd2445d7dbc6f01c "Get rid of Windows .def files in setup_native, use __declspec(dllexport)". Looks like for 32-bit builds, the .def file EXPORTS are still needed to avoid __stdcall's _...@NN symbol decoration (and for 64-bit builds __stdcall is effectively ignored, so the removed .def files didn't make a difference there). This is only a partial revert of 28b4f4aeaf160c7721dfecf5bd2445d7dbc6f01c, the addition of __declspec(dllexport) for the benefit of loplguin:external should still be fine. Change-Id: I76a1a3f4671824367bab495afeba291c0340108d Reviewed-on: https://gerrit.libreoffice.org/61047 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2018-09-18Get rid of Windows .def files in setup_native, use __declspec(dllexport)Stephan Bergmann
For one, replacing the dated .def files with equivalent functionality should be a good move all by itself. And for another, it paves the way for using loplugin:external with clang-cl on Windows, which uses the heuristic of not warning about functions that are explicitly marked as __declspec(dllexport). Change-Id: I6efd50a8c5ce2a166ca0dd4e5f472118f3f9a071 Reviewed-on: https://gerrit.libreoffice.org/60691 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
2017-04-21gbuild: Remove MSVC 2013 legacy codeDavid Ostrovsky
Uwinapi is discontinued. Change-Id: I063b4d0d8fab2d60de168e960a63b8181158ac01 Reviewed-on: https://gerrit.libreoffice.org/23198 Reviewed-by: David Ostrovsky <david@ostrovsky.org> Tested-by: David Ostrovsky <david@ostrovsky.org>
2016-05-30Work towards tdf#72606 EasyHack _tstring/TCHAR eliminationskswales
setup_native/source/win32/customactions/shellextensions in MSI Installer compiled as UNICODE Functions suffixed with A/W (ANSI/Wide) as needed for clarity Change-Id: I711f781b47c0efdb1e3d9bf995f7658dbb0e38d1 Reviewed-on: https://gerrit.libreoffice.org/25556 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
2015-09-03setup_native: Add vcruntime and libucrt on MSVC 14.0David Ostrovsky
Change-Id: If55979b55b4bc8dee785f0940461a01995060682 Reviewed-on: https://gerrit.libreoffice.org/17362 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
2015-03-05gbuild: set _WIN32_WINNT globally instead of WINVERMichael Stahl
... and remove the definitions in makefiles, except in fpicker, which defines a different value for the Vista file picker. The WINVER value is derived automatically from _WIN32_WINNT by SDK header sdkddkver.h. Change-Id: I73358a9bf5d070f71821654cae2a29335a754a21
2014-12-02Create/RemoveLayerLinks are unusedStephan Bergmann
...ever since 4c25522a6ba9c4cc22b57557baa53c87c39086fd "CWS-TOOLING: integrate CWS native196_DEV300" Change-Id: I8d50df80d8d5450db89b48338b32269aa8e67afb