2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-15 06:12:59 +00:00
cheat.sheets/sheets/xctool
2017-06-04 14:22:39 +00:00

12 lines
397 B
Plaintext

# 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