如何指定“安装--备份”在巴贾姆
我有一个包含以下命令的 Jamfile。我认为bjam使用unix install
命令来安装。我想将特定命令更改为 install --backup
或 install -b
。
exe datagen
: base_data_gen.cpp
install install-bin
: datagen
: <variant>release:<location>"$(BASETRADE_ROOT)_install/bin"
<variant>debug:<location>"$(BASETRADE_ROOT)_install/bindebug"
: release debug
;
请指教。
I have a Jamfile with the following commands . I think bjam uses the unix install
command to install. I'd like to change that to install --backup
or install -b
for a particular command.
exe datagen
: base_data_gen.cpp
install install-bin
: datagen
: <variant>release:<location>"$(BASETRADE_ROOT)_install/bin"
<variant>debug:<location>"$(BASETRADE_ROOT)_install/bindebug"
: release debug
;
Please advise.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实上,Boost.Build 使用“cp”。目前无法自定义,但如果您愿意,可以在 http://svn.boost.org 提交问题。
Boost.Build uses 'cp', in fact. This is not presently customizable, but you can file an issue at http://svn.boost.org if you wish.