Skip to content

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.

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.

Project.swift
let project = Project(
name: "App",
targets: [
// ....
]
)

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.

Workspace.swift
import ProjectDescription
let workspace = Workspace(
name: "App-Workspace",
projects: [
"./App", // Path to directory containing the Project.swift file
]
)

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 project description helpers as a unit of encapsulation. However, you might want to use Xcode projects as a unit of encapsulation to represent different domains of your application, which aligns more closely with the Xcode’s recommended project structure.

Tuist provides sensible defaults to simplify project configuration. However, you can customize the configuration by defining a 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))
)