<code>I can achieve this by gcc :<br><br>gcc -mwindows</code> -o simple simple.c<br clear="all"><br><br>But only find this in cmake:<br><br>add_executable(simple WIN32 simple.c)<br><br>But it&#39;s not exactly the same as <code>-mwindows,<br>
<br>this will require the entry point to be WinMain,</code><br><br>while gcc -mwindows doesn&#39;t require this.<br><br>How should I do it properly?<br>