Files
tldr/pages.zh/osx/carthage.md

24 lines
520 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Carthage
> 一个用于Cocoa应用程序的依赖管理工具。
> 更多信息:<https://github.com/Carthage/Carthage>。
- 下载Cartfile中提到的所有依赖的最新版本并构建它们
`carthage update`
- 更新依赖但仅为iOS构建
`carthage update --platform ios`
- 更新依赖,但不构建任何依赖:
`carthage update --no-build`
- 下载并重建当前版本的依赖(不更新它们):
`carthage bootstrap`
- 重建特定的依赖:
`carthage build {{dependency}}`