diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2022-03-15 10:11:54 +0300 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-03-15 10:45:16 +0100 |
commit | d3797ebe6fbd93bae27c6406a68a9154fa8401fd (patch) | |
tree | ea861844247853cd1a9f72720b657aa861493826 | |
parent | 85adfa77911acb072a1a31f9e021e7a1707a2544 (diff) |
Fix no-PCH build
Failing locally with
C:\lo\src\core\include\svl/poolitem.hxx(34): fatal error C1083: Cannot open include file: 'boost/property_tree/ptree_fwd.hpp': No such file or directory
make[1]: *** [C:/lo/src/core/solenv/gbuild/LinkTarget.mk:344: C:/lo/src/build/workdir/CxxObject/sc/qa/unit/SparklineImportExportTest.o] Error 2
Change-Id: I6d71a2a8da32ecb33faf470f7a5ddc0c7c8f4b1c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131577
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
-rw-r--r-- | sc/CppunitTest_sc_sparkline_test.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/CppunitTest_sc_sparkline_test.mk b/sc/CppunitTest_sc_sparkline_test.mk index 5dcd9a9921b5..92f121df7b35 100644 --- a/sc/CppunitTest_sc_sparkline_test.mk +++ b/sc/CppunitTest_sc_sparkline_test.mk @@ -35,6 +35,10 @@ $(eval $(call gb_CppunitTest_use_libraries,sc_sparkline_test, \ vcl \ )) +$(eval $(call gb_CppunitTest_use_externals,sc_sparkline_test,\ + boost_headers \ +)) + $(eval $(call gb_CppunitTest_set_include,sc_sparkline_test,\ -I$(SRCDIR)/sc/source/ui/inc \ -I$(SRCDIR)/sc/inc \ |