From: Perry Rapp Date: Wed, 22 Oct 2003 23:22:45 +0000 (+0000) Subject: Add readme.txt to MakeResDll. X-Git-Tag: 2.16.5~7628 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=e47e15149f250618539aac834e0102910a6e0dc2;p=winmerge-jp%2Fwinmerge-jp.git Add readme.txt to MakeResDll. --- diff --git a/Src/readme.txt b/Src/readme.txt index a2618944e..ce3471a1f 100644 --- a/Src/readme.txt +++ b/Src/readme.txt @@ -7,6 +7,8 @@ Fix MakeResDll for MSVC.NET & MSVC.NET 2003. Bump MakeResDll version from 1.0.0.1 to 1.0.1.0. MakeResDll: MakeResDll.cpp MakeResDll.rc + Add readme.txt to MakeResDll. + MakeResDll: MakeResDll.dsp readme.txt 2003-10-22 WinMerge experimental release 2.1.3.4 (cvs) diff --git a/Tools/MakeResDll/MakeResDll.dsp b/Tools/MakeResDll/MakeResDll.dsp index c95881fd4..4f7d01faf 100755 --- a/Tools/MakeResDll/MakeResDll.dsp +++ b/Tools/MakeResDll/MakeResDll.dsp @@ -39,6 +39,7 @@ RSC=rc.exe # PROP Use_Debug_Libraries 0 # PROP Output_Dir "Release" # PROP Intermediate_Dir "Release" +# PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /MD /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_AFXDLL" /Yu"stdafx.h" /FD /c # ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "..\common" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "_AFXDLL" /Yu"stdafx.h" /FD /c @@ -62,6 +63,7 @@ LINK32=link.exe # PROP Use_Debug_Libraries 1 # PROP Output_Dir "Debug" # PROP Intermediate_Dir "Debug" +# PROP Ignore_Export_Lib 0 # PROP Target_Dir "" # ADD BASE CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "_AFXDLL" /Yu"stdafx.h" /FD /GZ /c # ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "." /I "..\common" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "_AFXDLL" /Yu"stdafx.h" /FD /GZ /c @@ -133,5 +135,9 @@ SOURCE=.\StdAfx.h # PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe" # End Group +# Begin Source File + +SOURCE=.\readme.txt +# End Source File # End Target # End Project diff --git a/Tools/MakeResDll/readme.txt b/Tools/MakeResDll/readme.txt new file mode 100755 index 000000000..2a464ddc4 --- /dev/null +++ b/Tools/MakeResDll/readme.txt @@ -0,0 +1,31 @@ +MakeResDll + +This program invokes a resource compiler and a linker to produce +a language DLL from an RC source file. + +It searches the registry to find, in order of preference, +Visual Studio .NET 2003, Visual Studio .NET, Visual Studio 6, +and Visual Studio 5. + +This does not set the include and library paths correctly, +so before invoking this one must have these paths set. +If these were not set at installation time (it is an option), +these may typically be set by invoking a batch file such as: + + C:\Program Files\Microsoft Visual Studio .NET\Common7\Tools\vsvars32.bat + +or + + C:\Program Files\Microsoft Visual Studio\VC98\Bin\vcvars32.bat + + +If multiple versions are present, and you wish to override the +normal precedence order, then you must set the following three +keys in this fashion (this example forces use of MSVC6 installed +in the default location): + + +HKCU\Software\\Thingamahoochie\\MakeResDll\\Settings + VcBaseFolder = C:\Program Files\Microsoft Visual Studio\Common\MSDev98\Bin + RCExe = C:\Program Files\Microsoft Visual Studio\Common\MSDev98\Bin\rc.exe + LinkExe = C:\Program Files\Microsoft Visual Studio\vc98\bin\link.exe