Discussion:
Resource compiler (full path)
(too old to reply)
pm
2010-03-25 13:12:46 UTC
Permalink
Is it anyhow possible to force resource compiler prompting errors and
warnings with full path of resource file(s)?

I need something link cl /FC (Display full path of source code files
passed to cl.exe in diagnostic text.) but for resource compiler.


pm-
Cezary Noweta
2010-03-26 22:41:35 UTC
Permalink
Hello,
Post by pm
Is it anyhow possible to force resource compiler prompting errors and
warnings with full path of resource file(s)?
I need something link cl /FC (Display full path of source code files
passed to cl.exe in diagnostic text.) but for resource compiler.
You need to pass a full pathname to RC:

rc Q:\MYPROJ\res.rc

instead of

rc res.rc

Works on RC 5.2 and 6.1 (VS 2005/2008).

-- best regards

Cezary Noweta
pm
2010-03-29 11:27:56 UTC
Permalink
Post by Cezary Noweta
rc Q:\MYPROJ\res.rc
instead of
rc res.rc
Works on RC 5.2 and 6.1 (VS 2005/2008).
-- best regards
Cezary Noweta
Can I force Visual C++ project build to force do that (to pass a full
pathname to RC):

I’m building set of applications from command line by following command
line:
devenv /rebuild "Release|Win32" project1.sln
devenv /rebuild "Release|Win32" project1.sln

devenv /rebuild "Release|Win32" projectn.sln

Any idea how to achieve that?

Thanks

pm-

Loading...