创建新的 Visual Studio 项目,添加文件并运行它 - 命令行
有没有办法在不使用 IDE 的情况下创建新的 Visual Studio 项目,而是使用命令提示符?
我正在开发一个将生成小型 C++ 程序的项目,所以我想创建一个新项目,将该 C++ 文件添加到该项目中,编译并运行它,所有这些都仅使用命令提示符(批处理文件)..
所以任何人都可以请让我知道该怎么做..提前致谢..
is there any way to create a new visual studio project without using IDE, Instead use command prompt??
I am working on a project which will generate small C++ program, so i want to create a new project, add that C++ file to that project, compile and run it, all using command prompt (batch file) only..
so could anyone please let me know how to do this.. Thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Visual Studio 项目只是 XML 文件,因此您只需研究它们的格式并将其写出来即可。 (格式从 2008 年到 2010 年发生了变化。)
解决方案文件是自定义文本格式,但也没有那么复杂。
最后,devenv.exe 有一个“不启动 IDE,只需在命令行上编译此解决方案”的开关,您可以使用它来编译生成的解决方案。
Visual Studio projects are just XML files, so you can just study their format and write them out. (The format changed from 2008 to 2010.)
Solution files are a custom text format, but not that complicated either.
Finally, devenv.exe has a switch for "don't start the IDE, just compile this solution on the command line", which you can use to compile the resulting solution.
让 CMake 为您制作项目文件。它使用更清晰的语法,您还可以为各种其他构建系统生成项目文件。
例如,这是一个非常基本的 CMake 文件:
这是它生成的解决方案文件。
项目文件同样丑陋,有 294 行长。
添加依赖项也非常简单,以下是添加 boost 的方法:
Let CMake make your project files for you. It uses a much more legible syntax, and you can also generate project files for a variety of other build systems.
As an example, here's a very basic CMake file:
And here's the solution file it generates.
The Project file is similarly ugly and 294 lines long.
Adding dependencies is pretty simple too, here's how you add boost: