mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-08-28 20:11:19 +08:00
78951c649c
Co-authored-by: Lena Pastwa <lena@lnps.me>
491 B
491 B
xctool
Build Xcode projects. More information: https://github.com/facebookarchive/xctool#usage.
- Build a single project without any workspace:
xctool -project {{YourProject.xcodeproj}} -scheme {{YourScheme}} build
- Build a project that is part of a workspace:
xctool -workspace {{YourWorkspace.xcworkspace}} -scheme {{YourScheme}} build
- Clean, build, and execute all the tests:
xctool -workspace {{YourWorkspace.xcworkspace}} -scheme {{YourScheme}} clean build test