Hi Andreas,<div><br></div><div>as far as I know, your only chance to achieve this is by modifying your source code by adding</div><div><br></div><div><div>#ifndef NDEBUG</div><div>#pragma comment(linker, &quot;/SUBSYSTEM:CONSOLE&quot;)</div>

<div>#endif</div><div><br></div><div>Using add_executable(... win32 ...) is correct because the pragma statement will override the behaviour in debug mode (in my example in all but release builds)</div><div><br></div><div>
I hope this helps.</div><div><br></div><div>Regards,</div><div>Hauke</div><br><div class="gmail_quote">On Tue, Mar 6, 2012 at 11:55 AM, Andreas Haferburg <span dir="ltr">&lt;<a href="mailto:ahaferburg@scopis.com" target="_blank">ahaferburg@scopis.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi,<br>
<br>
I&#39;d like to suppress the console, but only in release builds. What&#39;s the official way to do that?<br>
<br>
add_executable(... win32 ...) doesn&#39;t work, because it switches off the console in debug builds.<br>
<br>
When I set LINKER_FLAGS_RELEASE to &quot;/subsystem:windows&quot;, I can suppress the console in the release builds. However, the Properties window in VS2010 still displays &quot;Console (/SUBSYSTEM:CONSOLE)&quot; in the linker settings, and has two entries in the command line: &quot;/SUBSYSTEM:CONSOLE&quot; and &quot;/subsystem:windows&quot;. Only the latter seems to count.<br>


<br>
When I set LINKER_FLAGS_RELEASE to &quot;/SUBSYSTEM:WINDOWS&quot;, CMake just drops it, and only retains &quot;/SUBSYSTEM:CONSOLE&quot; in the linker flags.<br>
<br>
It seems to me that CMake recognizes &quot;/SUBSYSTEM:WINDOWS&quot;, but chooses to ignore it for some reason. The fact that &quot;/subsystem:windows&quot; works the way it does seems like a bug. So what&#39;s the proper way to achieve what I want?<br>


<br>
I&#39;m using CMake 2.8.7 on Win 7 with VS2010.<br>
<br>
Cheers<br>
Andreas<br>
--<br>
<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/<u></u>opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the CMake FAQ at: <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/<u></u>CMake_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/<u></u>listinfo/cmake</a><br>
</blockquote></div><br></div>