sw/CppunitTest_sw_rtfexport.mk | 6 ++++++ sw/CppunitTest_sw_rtfimport.mk | 6 ++++++ 2 files changed, 12 insertions(+)
New commits: commit b3e3eb55bd7a8bec98d6edf0561170b3fb77d843 Author: Tor Lillqvist <[email protected]> Date: Mon Apr 17 10:30:33 2017 +0300 Avoid C1128 Change-Id: I5799ff84a8a93e8b9ca87831ab0968a3b1a050de diff --git a/sw/CppunitTest_sw_rtfexport.mk b/sw/CppunitTest_sw_rtfexport.mk index 54f8014ab2e6..b2151cef1fcc 100644 --- a/sw/CppunitTest_sw_rtfexport.mk +++ b/sw/CppunitTest_sw_rtfexport.mk @@ -41,6 +41,12 @@ $(eval $(call gb_CppunitTest_set_include,sw_rtfexport,\ $$(INCLUDE) \ )) +ifeq ($(OS),WNT) +$(eval $(call gb_CppunitTest_add_cxxflags,sw_rtfexport,\ + -bigobj \ +)) +endif + $(eval $(call gb_CppunitTest_use_sdk_api,sw_rtfexport)) $(eval $(call gb_CppunitTest_use_ure,sw_rtfexport)) diff --git a/sw/CppunitTest_sw_rtfimport.mk b/sw/CppunitTest_sw_rtfimport.mk index c2dbf8fc2785..5cfa97836398 100644 --- a/sw/CppunitTest_sw_rtfimport.mk +++ b/sw/CppunitTest_sw_rtfimport.mk @@ -43,6 +43,12 @@ $(eval $(call gb_CppunitTest_set_include,sw_rtfimport,\ $$(INCLUDE) \ )) +ifeq ($(OS),WNT) +$(eval $(call gb_CppunitTest_add_cxxflags,sw_rtfimport,\ + -bigobj \ +)) +endif + $(eval $(call gb_CppunitTest_use_sdk_api,sw_rtfimport)) $(eval $(call gb_CppunitTest_use_ure,sw_rtfimport)) _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
