summaryrefslogtreecommitdiff
path: root/desktop/Executable_quickstart.mk
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2012-09-28 15:31:46 +0200
committerMichael Stahl <mstahl@redhat.com>2012-09-28 16:49:08 +0200
commitdc397aae70433c0086ef41f4dac5289fb07a9b19 (patch)
tree3252bd411bd7a488c5af8640e37bb947900631df /desktop/Executable_quickstart.mk
parent80374355ab96fa73f2aee8971195faf3cf5985f5 (diff)
gbuild: gb_Library_PLAINLIBS_NONE cleanup for WNT:
add a new gb_LinkTarget_use_system_win32_libs to abstract different linker options on MSVC and GCC. Change-Id: Ic9bf2545f59bf7871e6fc06b290c486ddfbec03d
Diffstat (limited to 'desktop/Executable_quickstart.mk')
-rw-r--r--desktop/Executable_quickstart.mk11
1 files changed, 7 insertions, 4 deletions
diff --git a/desktop/Executable_quickstart.mk b/desktop/Executable_quickstart.mk
index 8e2bc84ad6ef..aecd9b37dd2b 100644
--- a/desktop/Executable_quickstart.mk
+++ b/desktop/Executable_quickstart.mk
@@ -33,12 +33,15 @@ $(eval $(call gb_Executable_set_include,quickstart,\
$$(INCLUDE) \
))
-$(eval $(call gb_Executable_use_libraries,quickstart,\
+$(eval $(call gb_Executable_use_system_win32_libs,quickstart,\
comdlg32 \
gdi32 \
ole32 \
oleaut32 \
shell32 \
+))
+
+$(eval $(call gb_Executable_use_libraries,quickstart,\
$(gb_UWINAPI) \
))
@@ -46,14 +49,14 @@ $(eval $(call gb_Executable_add_standard_system_libs,quickstart))
ifeq ($(COM),GCC)
-$(eval $(call gb_Executable_use_libraries,quickstart,\
+$(eval $(call gb_Executable_use_system_win32_libs,quickstart,\
uuid \
))
else
-$(eval $(call gb_Executable_add_libs,quickstart,\
- comsupp.lib \
+$(eval $(call gb_Executable_use_system_win32_libs,quickstart,\
+ comsupp \
))
endif