Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
#-------------------------------------------------------------------------------# Documentation#=pod=for htmltoc FAQ::Windows::Message Compiler=head1 NAMEHow to use the Windows Message Compiler=head1 SYNOPSISThe following code fragment uses the windows Message Compiler to create the RCfile which is then inserted into a DLL.# source filesSrc( '*', 'mf.mc' );Src( '*', 'mf.cc' );Src( '*', 'mf.h' );# files to be generatedGenerateFiles ('*', "--Tool=mc","--Prerequisite(mf.mc)","--CreatedCommon=mf.rc" );# headers to be installedInstallHdr( '*', 'mf.h' );# libraries to be madeSharedLib ( '*', 'mf', '--Resource=mf.rc', @OBJS );