Exclude Source Files from Build in Eclipse
Exclude Source Files from Build in Eclipse
Join the DZone community and get the full member experience.
Join For FreeDelivering modern software? Atomist automates your software delivery experience.
Sometimes I have source files in my project which I do not want to get compiled (or excluded from build). Because as I’m using the ‘managed make’, all source files matching certain extensions (like *.c) are automatically included into the build.
To exclude a file from build, I right-click on it to get to the properties. There I can select a check box to have it excluded from the build:
That file gets marked with an icon decorator:
To include it again into the build, simply remove that check mark again.
Another way is to use the ‘Exclude from build’ context menu which does the same:
Here it offers a dialog with the choice of build configurations where I can set a check mark from which build configuration I want to have it excluded:
This applies to all sources files to be compiled (usually *.c, *.cpp, *.cxx) and even linker files (*.ld, …). But what about header files????? The answer is that for header files it does not make any sense to exclude them: they are included by the compiler based on the include path (compiler) settings. So you cannot ‘exclude’ a single header file to be included. What you could do is to remove a path from the compiler settings, but then all header files will not be included.
Happy Excluding :-)
Start automating your delivery right there on your own laptop, today! Get the open source Atomist Software Delivery Machine.
Published at DZone with permission of Erich Styger , DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
{{ parent.title || parent.header.title}}
{{ parent.tldr }}
{{ parent.linkDescription }}
{{ parent.urlSource.name }}