From d0b3e5fc81a1d1903ef220bdea8036766a17dae2 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 23 Sep 2020 15:28:15 +0200 Subject: Fix linking CppunitTest/test_sc_jumbosheets_test on Windows ...where it started to fail for me with > jumbosheets-test.o : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __cdecl SvRefBase::ReleaseRef(void)" (__imp_?ReleaseRef@SvRefBase@@QEAAXXZ) referenced in function "public: __cdecl tools::SvRef::~SvRef(void)" (??1?$SvRef@VScDocShell@@@tools@@QEAA@XZ) > workdir\LinkTarget\CppunitTest\test_sc_jumbosheets_test.dll : fatal error LNK1120: 1 unresolved externals (even though SvRefBase::ReleaseRef is defined inline in include/tools/ref.hxx; but virtual ~SvRefBase is not, so presumably MSVC expects to find a copy of the former emitted next to the latter). Change-Id: I58ae9853cbf69ea58b156ae9ddf8a0a2e1dee090 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103252 Tested-by: Jenkins Reviewed-by: Stephan Bergmann --- sc/CppunitTest_sc_jumbosheets_test.mk | 1 + 1 file changed, 1 insertion(+) (limited to 'sc') diff --git a/sc/CppunitTest_sc_jumbosheets_test.mk b/sc/CppunitTest_sc_jumbosheets_test.mk index 3f8b0c99fbe8..0bac3a9c6571 100644 --- a/sc/CppunitTest_sc_jumbosheets_test.mk +++ b/sc/CppunitTest_sc_jumbosheets_test.mk @@ -32,6 +32,7 @@ $(eval $(call gb_CppunitTest_use_libraries,sc_jumbosheets_test, \ scqahelper \ sfx \ test \ + tl \ unotest \ vcl \ )) -- cgit