xsharp.eu • RC - paths
Page 1 of 1

RC - paths

Posted: Fri Jul 28, 2017 9:22 pm
by FFF
Have resource files, containing something like:
RSLE_CALCDN BITMAP "rsle_CALCDN.BMP"

Given, the containing app is a lib, where exactly looks x# for the image?

TIA
Karl

RC - paths

Posted: Sat Jul 29, 2017 1:33 pm
by Chris
Hi Karl,

It looks at the same folder where that particular .rc file is located. This is not in the control of X#, it's the resource compiler (rc.exe) that handles .rc compilation, I checked if it supports additionally looking at some general pool folder for external files, but unfortunately it seems it doesn't.

Chris

RC - paths

Posted: Sun Jul 30, 2017 9:40 am
by robert
Karl,

If you are compiling inside VS then the last commandline for the call to the native resource compiler is stored in your <LocalAppdata>Temp folder. I think it is called LastXSharpNativeResourceResponseFile.Rsp In the same way the last response file for the compiler is stored in that folder as LastXSharpResponseFile.rsp.
You will see that the include path that is specified under the preprocessor settings is also included in the call to the native resource compiler as well as the defines defined there.
IIRC the native resource compiler is called with a current directory equal to the project directory.
This is controlled by the XSharp.Build DLL for which you can find the source at:
https://github.com/X-Sharp/XSharpPublic ... harp.Build

Robert