summaryrefslogtreecommitdiff
path: root/solenv/Module_solenv.mk
diff options
context:
space:
mode:
authorPeter Foley <pefoley2@verizon.net>2013-03-12 20:03:14 -0400
committerFridrich Strba <fridrich@documentfoundation.org>2013-03-14 08:56:55 +0000
commit357ace566d4090b85c7c7b5d775c8b9eaaa76e5f (patch)
tree8dd7056f974f5843272d24c2e424ef5947798eff /solenv/Module_solenv.mk
parent77cc0cb72f88806ee13682ac868b9e468a070400 (diff)
add gcc-wrapper
Change-Id: I961bd23d1ec382d247a489cda42194ce9f4fe1da Reviewed-on: https://gerrit.libreoffice.org/2715 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'solenv/Module_solenv.mk')
-rw-r--r--solenv/Module_solenv.mk15
1 files changed, 10 insertions, 5 deletions
diff --git a/solenv/Module_solenv.mk b/solenv/Module_solenv.mk
index 3edb91b24b56..f0bb4c2f8fe9 100644
--- a/solenv/Module_solenv.mk
+++ b/solenv/Module_solenv.mk
@@ -31,15 +31,20 @@ $(eval $(call gb_Module_add_targets_for_build,solenv,\
Executable_concat-deps \
))
-ifneq ($(OS),WNT)
-ifneq ($(OS),IOS)
-ifneq ($(OS),ANDROID)
+ifeq ($(COM),MSC)
+$(eval $(call gb_Module_add_targets,solenv,\
+ StaticLibrary_wrapper \
+ Executable_gcc-wrapper \
+ Executable_g++-wrapper \
+))
+endif
+
+
+ifneq ($(filter-out WNT IOS ANDROID,$(OS)),)
$(eval $(call gb_Module_add_targets,solenv,\
CustomTarget_gdb \
Package_gdb \
))
endif
-endif
-endif
# vim: set shiftwidth=4 tabstop=4 noexpandtab: