An open API service indexing awesome lists of open source software.

https://github.com/dankinsoid/tuistbuildsettings

Build settings variables and methods for tuist
https://github.com/dankinsoid/tuistbuildsettings

appcode buildsettings ios tuist xcode

Last synced: 4 months ago
JSON representation

Build settings variables and methods for tuist

Awesome Lists containing this project

README

          

# BuildSettings
Build settings variables and methods for [tuist](https://docs.tuist.io/plugins/using-plugins).

Parsed from [Build Settings](https://xcodebuildsettings.com) 30/06/2022

## Example
```swift
import ProjectDescription
import BuildSettings

let settings: SettingsDictionary = [
.otherLinkerFlags("-lz").sdk(.iOSSimulator),
.injection,
.unusedFunctions(true),
.enableTestability,
.bundleLoader(inherit: .testHost)
]
```