aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/giop
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2009-02-02 23:09:36 +0000
committerUlf Lamping <ulf.lamping@web.de>2009-02-02 23:09:36 +0000
commit043532d63e58e71e33016241b8330886655a3f27 (patch)
tree247c112d0c780a7efb38e2658f3e52dbc820a102 /plugins/giop
parent7c48128948df683cd6d6c859d933df7fccba191f (diff)
add missing mt.exe calls, to include manifest files into exe / dll files
svn path=/trunk/; revision=27357
Diffstat (limited to 'plugins/giop')
-rw-r--r--plugins/giop/Makefile.nmake12
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/giop/Makefile.nmake b/plugins/giop/Makefile.nmake
index ee8bdf777c..f4f6e30ebf 100644
--- a/plugins/giop/Makefile.nmake
+++ b/plugins/giop/Makefile.nmake
@@ -22,18 +22,30 @@ all : cosnaming.dll coseventcomm.dll tango.dll parlay.dll
cosnaming.dll cosnaming.exp cosnaming.lib : packet-cosnaming.obj $(LINK_PLUGIN_WITH)
link -dll /out:cosnaming.dll $(LDFLAGS) packet-cosnaming.obj $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS)
+!IF $(MSC_VER_REQUIRED) >= 1400
+ mt.exe -nologo -manifest "cosnaming.dll.manifest" -outputresource:cosnaming.dll;2
+!ENDIF
coseventcomm.dll coseventcomm.exp coseventcomm.lib : packet-coseventcomm.obj $(LINK_PLUGIN_WITH)
link -dll /out:coseventcomm.dll $(LDFLAGS) packet-coseventcomm.obj $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS)
+!IF $(MSC_VER_REQUIRED) >= 1400
+ mt.exe -nologo -manifest "coseventcomm.dll.manifest" -outputresource:coseventcomm.dll;2
+!ENDIF
tango.dll tango.exp tango.lib : packet-tango.obj $(LINK_PLUGIN_WITH)
link -dll /out:tango.dll $(LDFLAGS) packet-tango.obj $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS)
+!IF $(MSC_VER_REQUIRED) >= 1400
+ mt.exe -nologo -manifest "tango.dll.manifest" -outputresource:tango.dll;2
+!ENDIF
parlay.dll parlay.exp parlay.lib : packet-parlay.obj $(LINK_PLUGIN_WITH)
link -dll /out:parlay.dll $(LDFLAGS) packet-parlay.obj $(LINK_PLUGIN_WITH) \
$(GLIB_LIBS)
+!IF $(MSC_VER_REQUIRED) >= 1400
+ mt.exe -nologo -manifest "parlay.dll.manifest" -outputresource:parlay.dll;2
+!ENDIF
!ENDIF