宏和 lib 文件的 devenv 命令行选项
我正在尝试使用 devenv.exe 命令行进行构建,并通过命令行提供一些预处理器定义和 lib 文件。
因此一种方法是在 proj 文件中设置
c/c++ --->;处理器--> preposessor 定义
我想在命令行中使用 devenv.exe 给出宏名称,
类似地,我有一个额外的链接器库依赖项
链接器 - 输入 - 附加依赖项
我想向 devenv 提供
任何帮助真的很感激。
谢谢
I am trying to make build using devenv.exe command line and have some preprocessor definitions and lib file to be given with command line.
as such one way is to set in proj file
c/c++ ---> proprocessor --> preposessor defintions
i want to give macro name in command line with devenv.exe
similarly i have one additional linker library dependency
linker - input - additional dependencies
which i want to supply with devenv
any help will be really appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也需要答案来解决同样的问题。
我有相同的项目源代码,但将使用不同的构建宏构建不同的二进制版本。现在我尝试两种方法来构建项目。其中一个被描述为 sachinc 的;另一种方法是用 python 脚本替换 .vcproj 中的 PreprocessorDefinitions。
我也很想知道如何使用 devenv.exe 和命令行进行构建。
also i need the answer to solve the same question.
i have the same project source code, but different binary version will be built out with different building macros. now i try two ways to build the project. one is described as sachinc's; another is to replace the PreprocessorDefinitions in .vcproj by python scripts.
iam also hankeringly to know how to make build using devenv.exe with command line.