2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-03 15:40:17 +00:00
cheat.sheets/sheets/xctool
Igor Chubin 41a78d99a3 xctool
2017-06-04 21:17:50 +00:00

12 lines
407 B
Plaintext

# xctool
# Tool for building Xcode projects (Mac OS X)
# 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