I'm developing a C++ command-line application in Visual Studio and need to debug it with command-line arguments. At the moment I just run the generated EXE file with the arguments I need (like this program.exe -file.txt) , but this way I can't debug. Is there somewhere I can specify the arguments for debugging?
|
|
||||
|
|
|
Yes, it's on the Debugging section of the properties page of the project. In VS 2008, 2010, or 2012, right-click the project, choose properties, go to the Debugging section -- there is a box for command line arguments. |
|||||||||||||||
|
|
The Mozilla.org FAQ on debugging Mozilla on Windows is of interest here. In short, the Visual Studio debugger can be invoked on a program from the command line, allowing one to specify the command line arguments when invoking a command line program, directly on the command line. This looks like the following for Visual Studio 8 or 9 devenv /debugexe 'program name' 'program arguments' It is also possible to have an explorer action to start a program in the Visual Studio debugger. |
|||
|
|
|
Even if you do start the executable outside Visual Studio, you can still use the "Attach" command to connect Visual Studio to your already-running executable. This can be useful e.g. when your application is run as a plug-in within another application. |
||||
|
|