mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-10-31 00:17:56 +01:00
431 B
431 B
xctool
Tool for building Xcode projects.
- 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