Configure the message compiler (mc.exe) as a custom compiler step in VC++ 2010?

前端 未结 5 1384
执笔经年
执笔经年 2021-02-01 07:43

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

5条回答
  •  执笔经年
    2021-02-01 08:22

    Hans Passant almost had it right. Unfortunately, $(InputPath) and $(InputName) aren't defined in VS 2010. Instead, create your message file:

    • Right click on your project->Add->New Item
    • Select "Text File (.txt), but name it as a ".mc" file (like "messages.mc")
    • Create a resource file (say, "resources.rc")
    • Edit the resources file so it contains only one line:

    #include "messages.rc"

    That file will be generated by the message compiler. Now add a custom build step to run the message compiler:

    • Right-click on messages.mc and select Properties.
    • In the Properties dialog set Configuration to "All Configurations".
    • Under "Configuration Properties" click on "General".
    • Ensure the "Excluded From Build" property is set to "No".
    • Set the "Item Type" property to "Custom Build Tool" from the drop-down menu and click the "Apply" button so the "Custom Build Tool" property will appear.
    • Click on "General" under the "Custom Build Tool" property.
    • Set the "Command Line" property to:

      mc %(FullPath)

    • Set the Description property to something like "Compiling Messages..."

    • Set Outputs property to:

      %(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.

提交回复
热议问题