我正在查看资源文件属性对话框,我注意到它正在使用.res来获取命令行字符串,具体来说,在本节中。
资源文件名| $(IntDir)%(文件名).RES
所以我很困惑。 res文件是rc文件的编译输出吗?
我正在使用VS2013 Express Ed。
答案 0 :(得分:3)
见这个
1)Create a resource-definition script (.rc file) that describes the resources used by your application.
2)Compile the script with RC. For more information, see `http://msdn.microsoft.com/en-us/library/windows/desktop/aa381055(v=vs.85).aspx.`
3)Link the compiled resource (.res) file into the application's executable file with your linker.
i.e After compilation using rc you will get .res file.
了解更多信息,请访问http://msdn.microsoft.com/en-us/library/windows/desktop/aa380599(v=vs.85).aspx
希望它对你有所帮助。