diff options
author | tono <tono@openoffice.org> | 2011-01-05 22:55:15 +0900 |
---|---|---|
committer | tono <tono@openoffice.org> | 2011-01-05 22:55:15 +0900 |
commit | 4344bf73859ac0583785059dccfe28da081ab821 (patch) | |
tree | 59cfac5d83e0858b54a178c848afde6837b61f04 /sw/Library_swd.mk | |
parent | cc9a9d52686d3874ed0932eba4a750845860ae3e (diff) |
mingwport33: i#116264: gbuild for MinGW
Diffstat (limited to 'sw/Library_swd.mk')
-rw-r--r-- | sw/Library_swd.mk | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sw/Library_swd.mk b/sw/Library_swd.mk index 17511d3bf4ed..39440092c574 100644 --- a/sw/Library_swd.mk +++ b/sw/Library_swd.mk @@ -70,10 +70,23 @@ $(eval $(call gb_Library_add_exception_objects,swd,\ sw/source/ui/uno/swdetect \ )) ifeq ($(OS),WNT) +ifneq ($(USE_MINGW),) +$(eval $(call gb_Library_add_linked_libs,swd,\ + mingwthrd \ + $(gb_MINGW_LIBSTDCPP) \ + mingw32 \ + $(gb_MINGW_LIBGCC) \ + uwinapi \ + mingwex \ + kernel32 \ + msvcrt \ +)) +else $(eval $(call gb_Library_add_linked_libs,swd,\ kernel32 \ msvcrt \ uwinapi \ )) endif +endif # vim: set noet sw=4 ts=4: |