Reuse ReferenceProxy references when possible (#1354)
Reuse ReferenceProxy references when possible
Add changelog
Update CHANGELOG.md
Co-authored-by: Yonas Kolb yonaskolb@users.noreply.github.com
版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号
京公网安备 11010802032778号
XcodeGen
XcodeGen is a command line tool written in Swift that generates your Xcode project using your folder structure and a project spec.
The project spec is a YAML or JSON file that defines your targets, configurations, schemes, custom build settings and many other options. All your source directories are automatically parsed and referenced appropriately while preserving your folder structure. Sensible defaults are used in many places, so you only need to customize what is needed. Very complex projects can also be defined using more advanced features.
.xcodeprojfrom git, which means no more merge conflicts!Given an example project spec:
A project would be created with 2 connected targets, with all the required configurations and build settings. See the Project Spec documentation for all the options you can specify, and Usage for more general documentation.
Installing
Make sure Xcode 11 is installed first.
Mint
Make
Homebrew
Swift Package Manager
Use as CLI
Use as dependency
Add the following to your Package.swift file’s dependencies:
And then import wherever needed:
import XcodeGenKitUsage
Simply run:
This will look for a project spec in the current directory called
project.ymland generate an Xcode project with the name defined in the spec.Options:
.ymlor.jsonproject spec. Defaults toproject.yml. (It is also possible to link to multiple spec files by comma separating them. Note that all other flags will be the same.)xcodegenis later run but the spec and all the files it contains are the same, the project won’t be generated.~/.xcodegen/cache/{PROJECT_SPEC_PATH_HASH}There are other commands as well such as
xcodegen dumpwhich lets out output the resolved spec in many different formats, or write it to a file. Usexcodegen helpto see more detailed usage information.Dependency Diagrams
Click to expand!
How to export dependency diagrams:
To stdout:
To a file:
During implementation,
graphvizformatting was validated using GraphvizOnline, WebGraphviz, and Graphviz on MacOS.Editing
This uses Swift Package Manager to create an
xcodeprojfile that you can open, edit and run in Xcode, which makes editing any code easier.If you want to pass any required arguments when running in Xcode, you can edit the scheme to include launch arguments.
Documentation
Alternatives
If XcodeGen doesn’t meet your needs try these great alternatives:
Attributions
This tool is powered by:
Inspiration for this tool came from:
Contributions
Pull requests and issues are always welcome. Please open any issues and PRs for bugs, features, or documentation.
License
XcodeGen is licensed under the MIT license. See LICENSE for more info.