Codeblocks ".layout" .depend "

I have a Codeblocks project, and I saw that there are files .layoutand .dependthat appeared in my project folder. As soon as I close Codeblocks, can I safely delete these files?

+4
source share
1 answer

'. layout ': this is a list of all open files in the corresponding project with a tab and a line.

'. depend ': dependencies of each file in the project.

Just delete them directly. They are generated during compilation.

+4
source

Source: https://habr.com/ru/post/1615656/


All Articles