diff --git a/sheets/xctool b/sheets/xctool new file mode 100644 index 0000000..18c10a6 --- /dev/null +++ b/sheets/xctool @@ -0,0 +1,11 @@ +# 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