I am writing a C++ project
The VS2008 does not give me directory like src/bin/data… I would these folder, which src folder store the source, and bin folder store the program.
How can it be done?
Thanks.
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.
VS doesn’t need the source files in any particular dir structure, you can have it produce the output in Debug and Release directories if you want, it’s all set in the properties dialogs.
The easiest thing is to create a new empty project and then copy your code into the same directory as the main.cpp that will be created.