在 Eclipse 中更改 C++ 的可执行文件名称
我已经在 Eclipse 中创建了一个 C++ 项目,当前它构建了一个名为 file.exe 的可执行文件,但我想将其更改为“file”。
我该怎么做?
谢谢。
I've created a C++ project in Eclipse and currently it builds an executable called file.exe but I want to change this to "file".
How do I do this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要更改可执行文件的名称及其扩展名,请转到:
项目设置> C/C++ 构建 >设置>构建神器
To change the name of the executable and it's extension go to:
Project Settings > C/C++ Build > Settings > Build Artifact
您无法从文件名中删除 .exe,因为 Windows 使用它来确定文件类型,并且删除 .exe,那么它将不知道该文件是可执行文件。
You cannot remove the .exe from the filename, because windows uses this to determine the file type, and be removing the .exe, then it will not know that the file is an executable.