是否可以从脚本中确定 r2build 脚本的位置?
我的项目结构如下所示
<base_dir>\build\release.r2p
<base_dir>\build\thirdparty\...
<base_dir>\src\...
<basd_dir>\release\...
我的构建脚本执行以下操作:
- 删除
\release - 将
复制到\build\thirdparty < base_dir>\release
- 编译代码并输出到
\release
我需要偶尔更改
的位置,我想要当我这样做时,r2b 脚本就可以工作。现在,我必须在
发生变化时手动更新它。
是否可以引用相对于 r2p 文件位置的文件?这将允许我执行以下操作:
- 删除
\..\release - 将
复制到\..\build\thirdparty < ;r2p_script_dir>\..\release
- 编译代码并输出到
\..\release
My project structure looks like this
<base_dir>\build\release.r2p
<base_dir>\build\thirdparty\...
<base_dir>\src\...
<basd_dir>\release\...
And my build script does stuff like:
- delete
<base_dir>\release
- copy
<base_dir>\build\thirdparty
to<base_dir>\release
- compile code and output to
<base_dir>\release
I need to change the location of <base_dir>
occasionally and I would like the r2b script to just work when I do this. Right now I have to go in and manually update <base_dir>
when it changes.
Is it possible to reference files relative to the r2p file location? This would allow me to do something like:
- delete
<r2p_script_dir>\..\release
- copy
<r2p_script_dir>\..\build\thirdparty
to<r2p_script_dir>\..\release
- compile code and output to
<r2p_script_dir>\..\release
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
到目前为止,还没有内置变量支持这一点。
我会考虑在 3.0 中支持更多内置变量。
so far there is no buildin variable support that.
i will consider it in 3.0 to support more buildin variables.