how is it possible to make objects (*.o) files in visual studio 2010 wiht out linking from *.cpp files in visual C++ project
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’m not sure what you’re trying to achieve, but you can simply compile the cpp file (as opposed to building the project) to get the obj file. Ctrl-F7 when editing the file will do the trick. The file does have to compile successfully, of course, in order to get the obj file.