Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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 really lost on how to do this.

like image 929
EMS Avatar asked Jun 11 '10 23:06

EMS


People also ask

What is MC EXE?

Used to compile instrumentation manifests and message text files. The compiler generates the message resource files to which your application links. syntax Copy.

What is mc file in windows?

An MC file is a 3D model created by Molecular Constructor, a free molecule building program. It is a plain text file that specifies atoms' positions and bonds within a molecule and, when loaded in Molecular Constructor, is used to show the molecule in 3D.


2 Answers

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.

like image 112
Doug Cuthbertson Avatar answered Oct 07 '22 01:10

Doug Cuthbertson


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:

  • Command line = mc $(InputPath)
  • Outputs = $(InputName).rc

Edit your .rc file, add:

#include "Blah.rc"

Worked for me, ought to be close.

like image 41
Hans Passant Avatar answered Oct 07 '22 01:10

Hans Passant