forked from ConfusedVorlon/ProjectFileTool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
help.txt
34 lines (19 loc) · 897 Bytes
/
help.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
ProjectFileTool
Synopsis
ProjectFileTool [--help | --version |-c -xcproj xcodeproject [-targets targets] [-showtargets]
Description
Parse the xcodeproject file to manage included files, and perform localisation tasks
the options are as follows:
--help
output this help file
-c run as command line tool (rather than cocoa app)
-xcproj specify path of xcodeproject file
-targets specify comma limited list of targets to parse for files (default is all targets)
-showtargets output a list of target names
Examples
source files are ones with these extensions:
NSArray *interestingExtensions=@[@"xib",@"m",@"storyboard",@"swift"];
ProjectFileTool -xcproj path/To/project.xcodeproj
output source files included in project.xcodeproj
ProjectFileTool -xcproj path/To/project.xcodeproj -targets target1,target2
output source files included in project.xcodeproj which are in target1 or target2