Can anyone list the specific and detailed steps to configure mc.exe (the message compiler) to compile a .mc file into a .rc file as a custom compiler step in VC++ 2010?
I am
Right-click the project, Add + New Item, select Text File, name it Blah.mc. Enter or paste the definitions. Right-click Blah.mc, Properties, Custom build step:
Edit your .rc file, add:
#include "Blah.rc"
Worked for me, ought to be close.
In Visual Studio 2017 - then you can do following:
open up the .vcxproj file for your project, then add following lines inside the ItemDefinitionGroup :
<CustomBuildStep>
<Command>mc "$(InputDir)\$(InputName).mc" -r "$(InputDir)\res" -h "$(InputDir)"</Command>
</CustomBuildStep>
This should generate 3 files .h, .rc, and .res - look in the designated build folder
If you want to use a Custom Build Rule, you can do this
Click "New Rule File" and fill out the fields, I use this rule file for MC.EXE
<VisualStudioToolFile Name="Message Table Build Rule" Version="8.00">
<Rules>
<CustomBuildRule
Name="Message Table Build Rule"
DisplayName="Message Table Build Rule"
CommandLine="[Location]\mc.exe [Unicode] [Verbose] [Inputs]"
Outputs="Message Table Build Rule"
FileExtensions="*.mc"
ExecutionDescription="Message Table Build Rule"
>
<Properties>
<BooleanProperty
Name="Verbose"
DisplayName="Verbose mode"
Description="Foo."
Switch="-v"
/>
<BooleanProperty
Name="Unicode"
DisplayName="Unicode mode"
Description="Bar."
Switch="-u"
/>
<StringProperty
Name="Location"
DisplayName="Location"
Description="Baz."
Switch="[value]"
DefaultValue="C:\Bin\Psdk\Bin"
/>
</Properties>
</CustomBuildRule>
</Rules>
</VisualStudioToolFile>
Hans Passant almost had it right. Unfortunately, $(InputPath) and $(InputName) aren't defined in VS 2010. Instead, create your message file:
#include "messages.rc"
That file will be generated by the message compiler. Now add a custom build step to run the message compiler:
Set the "Command Line" property to:
mc %(FullPath)
Set the Description property to something like "Compiling Messages..."
%(Filename).rc;%(Filename).h;MSG0409.bin
The file MSG00409.bin is from having the following line in messages.mc:
LanguageNames = (English=0x409:MSG00409)
There can be a bin file for each language you add to messages.mc. The nice part of listing them in the output is that it will be deleted when the project is cleaned.
The only thing I'm not sure about is setting the "Execute Before" property to guarantee messages.rc is generated before resource.rc is compiled. I didn't have to set it, but if you find the resource compiler is trying to execute before the message compiler, then you'll have to set this property. It's disabled for the "messages.mc" file, but it can be set in the project's "Custom Build Step" property.
In case custom compiler
is not a requirement but more how to make it build .rc files from MSBuild.
The WDK MessageCompiler task offers this integration with MSBuild
<ItemGroup>
<MessageCompile Include="a.mc">
<GenerateBaselineResource>true</GenerateBaselineResource>
<BaselineResourcePath>c:\test\</BaselineResourcePath>
</MessageCompile>
</ItemGroup>