With CONNECT Update 4, my bmake file containing the following line is successful:
#---------------------------------------------------------------------- # Compile the Windows resource files for the DLM #---------------------------------------------------------------------- $(o)$(appName).res : $(baseDir)$(appName).rc $(baseDir)resource.h
The rule recognises that I want to create a binary resource (*.res) from a resource source file (*.rc). It's standard Win32 resource stuff.
With CONNECT Update 5 that rule fails with this message:
[== Building G:\PROGRA~1\Bentley\MICROS~2\SDK\objects\AreaAnnotator.res, (Q:\AreaAnnotator\CONNECT\AreaAnnotator.rc) ==] rc -d -dVARIETY= -dUSER="\"CONNECT on CELERATRIX64\"" -d_X64_ -dwinNT -r -foG:\PROGRA~1\Bentley\MICROS~2\SDK\objects\AreaAnnotator.res Q:\AreaAnnotator\CONNECT\AreaAnnotator.rc'rc' is not recognized as an internal or external command, operable program or batch file.
What's gone wrong?