How to exclude files from Eclipse cleanup command

I want to exclude file deletion using Eclipse Project Clean. I am working on an SDL application, so I need the SDL.dll file to be present in the Debug folder.

Is it possible to exclude, for example, * .dll files from a clean operation? If so, how do I do this? I don't have a makefile in my Eclipse CDT project, so I can't just change the net target.

+5
source share
3 answers

Put the dll in the source folder, it will be copied automatically to the destination folder

+3
source

Eclipse . , dll , . , , , . , CDT, , , ( → ).

0

Exclude the file in a clean section of the Ant script, and then import the script into Eclipse as a new project.

0
source

All Articles