diff options
author | Tor Lillqvist <tml@collabora.com> | 2017-04-17 10:30:33 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2017-04-17 10:30:33 +0300 |
commit | b3e3eb55bd7a8bec98d6edf0561170b3fb77d843 (patch) | |
tree | c2390b13366c7cc4e59d7d84b9997a379bc7b9e4 /sw | |
parent | 44b14e8c7c485d8a3bb99d9484ac63273988b633 (diff) |
Avoid C1128
Change-Id: I5799ff84a8a93e8b9ca87831ab0968a3b1a050de
Diffstat (limited to 'sw')
-rw-r--r-- | sw/CppunitTest_sw_rtfexport.mk | 6 | ||||
-rw-r--r-- | sw/CppunitTest_sw_rtfimport.mk | 6 |
2 files changed, 12 insertions, 0 deletions
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)) |