安装poco库
我正在尝试为 Visual C++ 2008 安装 poco 库,但是当我键入此命令
buildwin.cmd 90
时,出现以下错误
“‘devenv’不被识别为内部或外部命令、可操作程序或批处理文件。”
自述文件说有另一种方法可以从 Visual Studio 本身安装 poco,但我也不太知道该怎么做。
任何指示是什么问题?
im trying to install the poco library for visual c++ 2008 but when I type this command
buildwin.cmd 90
I get the following error
"'devenv' is not recognized as an internal or external command, operable program or batch file."
The readme file says there is an alternate way to install poco from visual studio itself but i don't quite know how to do that either.
any pointers what the problem is?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
听起来您的 shell 环境没有所有需要的路径。您尝试过使用 VS 命令提示符吗?如果没有,只需单击“开始”菜单 VS 条目中的链接即可打开 cmd.exe,并进行一些其他环境设置。
Sounds like your shell environment doesn't have all the needed paths. Have you tried using the VS Command Prompt? If not,just click the link in the Start Menu VS entry that opens cmd.exe with some additional environmental setup.
您可以通过在 Visual Studio 中打开解决方案文件并从那里构建它们来构建项目。
You can build the projects by opening the solution files in Visual Studio and build them from there.
参加聚会迟到了,但我想这可能对将来的任何人都有帮助。对于 Jack the lesser 对 Adam Wright 评论的回复,我遇到了同样的“无法打开组件”问题,这是由于不在与 buildwin 相同的目录中造成的。我的目标是从 VS 命令行让我离开的地方开始,但是一旦我更改了目录,它就会继续构建。
Late to the party but I though it might help anyone in the future. For jack the lesser's reply to Adam Wright's comment, I had the same "cannot open components" issue and it was caused by not being in the exact directory as buildwin. I was targeting it from where the VS command line dropped me off but once I changed directories it proceeded to build.