更改vs2010中的文件路径变量
我希望更改 VS2010 中的 $(something)
变量。我一生都无法找到这些 $(something)
变量的定义位置。
对于好奇心来说,这是因为我正在编译 libpng 并且需要更改 $(ZLibSrcDir) 以便它指向我的 zlib 所在的位置。我知道我可以把它放在它期望的地方,但我仍然想知道如何更改这些变量。
I wish to change a $(something)
variable in VS2010. I cannot for the life of me find where these $(something)
variables are defined.
For the curios it is because I am compiling libpng and need to change $(ZLibSrcDir)
so it points to where my zlib is. I know I could just put it where it expects it, but I would like to know how to change these variables none the less.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我正在寻找的答案是编辑属性表。这是最新 libpng 源附带的属性表 zlib.props。它与 .sln 文件位于同一文件夹中。
评论得很好:)
The answer I was looking for was to edit the property sheet. This is the property sheet zlib.props that comes with the latest libpng source. It is in the same folder as the .sln file.
It is very well commented :)
创建环境变量
%ZLibSrcDir%
指向您需要的位置。为什么不呢?
Create environment variable
%ZLibSrcDir%
pointing where you need.Why not?