aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.nmake
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2008-10-13 18:32:49 +0000
committerGerald Combs <gerald@wireshark.org>2008-10-13 18:32:49 +0000
commitb55a53fe02f5dff8d2a1c437330b7013dcdb79e2 (patch)
tree0462fcc4886aaac41ba390d6a81d804161843a61 /Makefile.nmake
parentb4d9a5c868981a8d85ad3a9ff265796fa76d2d5a (diff)
Create a manifest for rawshark.exe.
svn path=/trunk/; revision=26437
Diffstat (limited to 'Makefile.nmake')
-rw-r--r--Makefile.nmake3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.nmake b/Makefile.nmake
index 562df24bf6..5296375063 100644
--- a/Makefile.nmake
+++ b/Makefile.nmake
@@ -244,6 +244,9 @@ rawshark.exe : $(LIBS_CHECK) config.h svnversion.h $(rawshark_OBJECTS) getopt.ob
$(LINK) @<<
/OUT:rawshark.exe $(conflags) $(conlibsdll) $(LDFLAGS) /LARGEADDRESSAWARE /SUBSYSTEM:console $(rawshark_LIBS) $(rawshark_OBJECTS) getopt.obj inet_ntop.obj image\rawshark.res
<<
+!IF $(MSC_VER_REQUIRED) >= 1400
+ mt.exe -nologo -manifest "rawshark.exe.manifest" -outputresource:rawshark.exe;1
+!ENDIF
# XXX: This makefile does not properly handle doing a 'nmake ... capinfos.exe' directly since some of the .objs
# (e.g. epan\plugins.obj) must be built first using epan\Makefile.nmake (which happens for 'nmake ... all').