From 3de2e8a32bead23229b263f21d4dff13dc695e4d Mon Sep 17 00:00:00 2001 From: Mike Kaganski Date: Sat, 8 Oct 2016 23:38:05 +1000 Subject: tdf#103058: Implement OpenDocuments ActiveX control Change-Id: I97489090476cd884a122a4b36d3ac62ca86fd886 Reviewed-on: https://gerrit.libreoffice.org/29608 Tested-by: Jenkins Reviewed-by: Tor Lillqvist --- shell/Library_spsupp_x64.mk | 50 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 shell/Library_spsupp_x64.mk (limited to 'shell/Library_spsupp_x64.mk') diff --git a/shell/Library_spsupp_x64.mk b/shell/Library_spsupp_x64.mk new file mode 100644 index 000000000000..4b29f27e31d2 --- /dev/null +++ b/shell/Library_spsupp_x64.mk @@ -0,0 +1,50 @@ +# -*- 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,spsupp_x64)) + +$(eval $(call gb_Library_set_x64,spsupp_x64,YES)) + +$(eval $(call gb_Library_use_custom_headers,spsupp_x64,\ + shell/source \ + shell/source/win32/spsupp/idl \ +)) + +$(eval $(call gb_Library_set_include,spsupp_x64,\ + -I$(SRCDIR)/shell/inc/spsupp \ + $$(INCLUDE) \ +)) + +$(eval $(call gb_Library_add_defs,spsupp_x64,\ + -DUNICODE \ + -D_UNICODE \ +)) + +$(eval $(call gb_Library_use_system_win32_libs,spsupp_x64,\ + advapi32 \ + kernel32 \ + ole32 \ + oleaut32 \ + user32 \ +)) + +$(eval $(call gb_Library_add_nativeres,spsupp_x64,spsupp)) + +$(eval $(call gb_Library_add_ldflags,spsupp_x64,\ + /DEF:$(SRCDIR)/shell/source/win32/spsupp/spsupp.def \ +)) + +$(eval $(call gb_Library_add_x64_generated_exception_objects,spsupp_x64,\ + CustomTarget/shell/source/win32/spsupp/COMOpenDocuments \ + CustomTarget/shell/source/win32/spsupp/registrar \ + CustomTarget/shell/source/win32/spsupp/spsuppClassFactory \ + CustomTarget/shell/source/win32/spsupp/spsuppServ \ +)) + +# vim: set shiftwidth=4 tabstop=4 noexpandtab: -- cgit