slow-runner
slow-runner

Reputation: 145

Where are the Eclipse CDT Debug Configurations stored?

I've got a C/C++ project with a custom debug configuration. That is, under Debug Configurations, I selected C/C++ Application and then hit the "New" button. I named this configuration MyTestingDebugConfiguration.

I've applied the changes and closed eclipse.

Where is this debug configuration named "MyTestingDebugConfiguration" stored? I don't see it listed in the .cproject file or the .project file. I'm assuming it is stored in xml somewhere on my filesystem. But I can't find it.

Note: My debug configuration points to a binary that is not in my project tree. I also declare an environment variable. I'd like to know where this configuration is stored on disk.

Thanks in advance!

Upvotes: 5

Views: 1789

Answers (2)

Michael Fayad
Michael Fayad

Reputation: 1336

Mine was in this file:

MyCppProject\.settings\language.settings.xml

Upvotes: 0

mat101
mat101

Reputation: 170

Launch configurations are stored in your workspace .metadata folder as ".launch" files, in

<workspace root>\.metadata\.plugins\org.eclipse.debug.core\.launches

Upvotes: 9

Related Questions