使用 Eclipse 构建 Windows SDL 项目时如何防止出现控制台?
当您运行 .exe 时,会出现 SDL 窗口,同时也会出现控制台窗口。 如何单独获取 SDL 窗口?
我应该更改什么配置选项? 有吗?
我正在使用 MinGW 进行编译并使用 Eclipse Ganymede。
When you run the .exe, the SDL window appears, but so does a console window. How do I get just the SDL window by itself?
What configuration option should I be changing? Is there one?
I'm compiling with MinGW and using Eclipse Ganymede.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我必须使用
-Wl,-subsystem,windows
作为链接器标志进行编译。
嗯,回答我自己的问题。
I had to compile with
-Wl,-subsystem,windows
as a linker flag.
Mmm, answerin' my own questions.