2016-09-22 08:03:38 +01:00
|
|
|
# xctool
|
2015-08-19 11:11:49 +01:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Tool for building Xcode projects.
|
2023-10-22 18:42:25 +01:00
|
|
|
> More information: <https://github.com/facebookarchive/xctool>.
|
2015-08-19 11:11:49 +01:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Build a single project without any workspace:
|
2015-08-19 11:11:49 +01:00
|
|
|
|
2016-09-22 08:03:38 +01:00
|
|
|
`xctool -project {{YourProject.xcodeproj}} -scheme {{YourScheme}} build`
|
2015-08-19 11:11:49 +01:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Build a project that is part of a workspace:
|
2015-08-20 05:59:07 +01:00
|
|
|
|
|
|
|
`xctool -workspace {{YourWorkspace.xcworkspace}} -scheme {{YourScheme}} build`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Clean, build and execute all the tests:
|
2015-08-19 11:11:49 +01:00
|
|
|
|
|
|
|
`xctool -workspace {{YourWorkspace.xcworkspace}} -scheme {{YourScheme}} clean build test`
|