2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-03 15:40:17 +00:00
cheat.sheets/sheets/xctool

12 lines
407 B
Plaintext
Raw Normal View History

2017-06-04 14:22:39 +00:00
# xctool
2017-06-04 21:17:50 +00:00
# Tool for building Xcode projects (Mac OS X)
2017-06-04 14:22:39 +00:00
# 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