using pragma or any programmatic way of excluding a cpp/header file from a project in Visual Studio - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T09:48:20Zhttp://stackoverflow.com/feeds/question/978688http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/978688/using-pragma-or-any-programmatic-way-of-excluding-a-cpp-header-file-from-a-projec0using pragma or any programmatic way of excluding a cpp/header file from a project in Visual Studiostanigator2009-06-10T23:54:35Z2009-06-11T00:04:03Z
<p>I know there are other questions regarding that, and I also know that I can right click on the files that I want excluded, and select <strong>Exclude from Project</strong>. However. I'm wondering if there are any easy ways of achieving the same purpose programmatically. For example, in a VS project, to link with an external library, I can either add the library name in the project's settings under <strong>Linker</strong> options, or use "pragma comment(lib, library name in char*)". I'm wondering if this can be achieved similar to how I have described my example.</p>
http://stackoverflow.com/questions/978688/using-pragma-or-any-programmatic-way-of-excluding-a-cpp-header-file-from-a-projec/978709#9787090Answer by Gerald for using pragma or any programmatic way of excluding a cpp/header file from a project in Visual StudioGerald2009-06-11T00:04:03Z2009-06-11T00:04:03Z<pre><code>#if 0
#endif
</code></pre>
<p>Seriously, though... no there's no pragma for that. Even Microsoft isn't quite that silly :P</p>
<p>You can #include a .cpp file to include it without it specifically being part of the project, but your only option to exclude a file is the way you described.</p>