Manifests
Manifests
Section titled “Manifests”Tuist defaults to Swift files as the primary way to define projects and workspaces and configure the generation process. These files are referred to as manifest files throughout the documentation.
The decision of using Swift was inspired by the Swift Package Manager, which also uses Swift files to define packages. Thanks to the usage of Swift, we can leverage the compiler to validate the correctness of the content and reuse code across different manifest files, and Xcode to provide a first-class editing experience thanks to the syntax highlighting, auto-completion, and validation.
Project.swift
Section titled “Project.swift”The Project.swift manifest declares an Xcode project. The project gets generated in the same directory where the manifest file is located with the name indicated in the name property.
let project = Project( name: "App", targets: [ // .... ])Workspace.swift
Section titled “Workspace.swift”By default, Tuist generates an Xcode Workspace containing the project being generated and the projects of its dependencies. If for any reason you’d like to customize the workspace to add additional projects or include files and groups, you can do so by defining a Workspace.swift manifest.
import ProjectDescription
let workspace = Workspace( name: "App-Workspace", projects: [ "./App", // Path to directory containing the Project.swift file ])Multi or mono-project
Section titled “Multi or mono-project”A question that often comes up is whether to use a single project or multiple projects in a workspace. In a world without Tuist where a mono-project setup would lead to frequent Git conflicts the usage of workspaces is encouraged. However, since we don’t recommend including the Tuist-generated Xcode projects in the Git repository, Git conflicts are not an issue. Therefore, the decision of using a single project or multiple projects in a workspace is up to you.
In the Tuist project we lean on mono-projects because the cold generation time is faster (fewer manifest files to compile) and we leverage
Tuist.swift
Section titled “Tuist.swift”Tuist provides Tuist.swift at the root of the project, which is used by Tuist to determine the root of the project.
import ProjectDescription
let tuist = Tuist( project: .tuist(generationOptions: .options(enforceExplicitDependencies: true)))