Skip to content

Commit 441fa51

Browse files
andrebergbengardner
authored andcommittedOct 25, 2009
Add missing osx directory.
1 parent 9884f50 commit 441fa51

File tree

1 file changed

+120
-0
lines changed

1 file changed

+120
-0
lines changed
 
+120
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
// !$*UTF8*$!
2+
{
3+
commands = (
4+
{
5+
directory = .;
6+
name = make;
7+
script = "#!/bin/sh\n./configure\nmake\n";
8+
type = other;
9+
},
10+
{
11+
directory = .;
12+
name = "Build uncrustify with configuration Debug";
13+
script = "#!/bin/sh\n\nxcodebuild -project uncrustify.xcodeproj -configuration Debug build\n";
14+
type = build;
15+
},
16+
{
17+
directory = .;
18+
name = "Build uncrustify with configuration Release";
19+
script = "#!/bin/sh\n\nxcodebuild -project uncrustify.xcodeproj -configuration Release build\n";
20+
type = build;
21+
},
22+
{
23+
directory = .;
24+
name = "Build uncrustify with configuration Install (xcodebuild only!)";
25+
script = "#!/bin/sh\n\nxcodebuild -project uncrustify.xcodeproj -configuration \"Install (xcodebuild only!)\" build\n";
26+
type = build;
27+
},
28+
{
29+
directory = .;
30+
name = "Clean uncrustify with configuration Debug";
31+
script = "#!/bin/sh\n\nxcodebuild -project uncrustify.xcodeproj -configuration Debug clean\n";
32+
type = clean;
33+
},
34+
{
35+
directory = .;
36+
name = "Clean uncrustify with configuration Release";
37+
script = "#!/bin/sh\n\nxcodebuild -project uncrustify.xcodeproj -configuration Release clean\n";
38+
type = clean;
39+
},
40+
{
41+
directory = .;
42+
name = "Clean uncrustify with configuration Install (xcodebuild only!)";
43+
script = "#!/bin/sh\n\nxcodebuild -project uncrustify.xcodeproj -configuration \"Install (xcodebuild only!)\" clean\n";
44+
type = clean;
45+
},
46+
{
47+
directory = selection;
48+
name = "----";
49+
type = clean;
50+
},
51+
{
52+
directory = .;
53+
name = "Clean All in uncrustify with configuration Debug";
54+
script = "#!/bin/sh\n\nxcodebuild -project uncrustify.xcodeproj -configuration Debug -alltargets clean\n";
55+
type = clean;
56+
},
57+
{
58+
directory = .;
59+
name = "Clean All in uncrustify with configuration Release";
60+
script = "#!/bin/sh\n\nxcodebuild -project uncrustify.xcodeproj -configuration Release -alltargets clean\n";
61+
type = clean;
62+
},
63+
{
64+
directory = .;
65+
name = "Clean All in uncrustify with configuration Install (xcodebuild only!)";
66+
script = "#!/bin/sh\n\nxcodebuild -project uncrustify.xcodeproj -configuration \"Install (xcodebuild only!)\" -alltargets clean\n";
67+
type = clean;
68+
},
69+
{
70+
arguments = "-l oc+ -c $SOURCE_ROOT/etc/objc.cfg -q -f $SOURCE_ROOT/tests/input/oc/Fraction.m";
71+
directory = .;
72+
name = "Run uncrustify from uncrustify with configuration Debug";
73+
script = "/Users/andre/Documents/Xcode/CommandLineUtility/C++Tool/uncrustify/build/Debug/uncrustify";
74+
type = run;
75+
},
76+
{
77+
arguments = "-l oc+ -c $SOURCE_ROOT/etc/objc.cfg -q -f $SOURCE_ROOT/tests/input/oc/Fraction.m";
78+
directory = .;
79+
name = "Run uncrustify from uncrustify with configuration Release";
80+
script = "/Users/andre/Documents/Xcode/CommandLineUtility/C++Tool/uncrustify/build/Release/uncrustify";
81+
type = run;
82+
},
83+
{
84+
arguments = "-l oc+ -c $SOURCE_ROOT/etc/objc.cfg -q -f $SOURCE_ROOT/tests/input/oc/Fraction.m";
85+
directory = .;
86+
name = "Run uncrustify from uncrustify with configuration Install (xcodebuild only!)";
87+
script = "/Users/andre/Documents/Xcode/CommandLineUtility/C++Tool/uncrustify/build/Install (xcodebuild only!)/uncrustify";
88+
type = run;
89+
},
90+
{
91+
directory = selection;
92+
name = "----";
93+
type = run;
94+
},
95+
{
96+
arguments = "-l oc+ -c $SOURCE_ROOT/etc/objc.cfg -q -f $SOURCE_ROOT/tests/input/oc/Fraction.m";
97+
debugger = gdb;
98+
directory = .;
99+
name = "Debug uncrustify from uncrustify with configuration Debug";
100+
script = "/Users/andre/Documents/Xcode/CommandLineUtility/C++Tool/uncrustify/build/Debug/uncrustify";
101+
type = run;
102+
},
103+
{
104+
arguments = "-l oc+ -c $SOURCE_ROOT/etc/objc.cfg -q -f $SOURCE_ROOT/tests/input/oc/Fraction.m";
105+
debugger = gdb;
106+
directory = .;
107+
name = "Debug uncrustify from uncrustify with configuration Release";
108+
script = "/Users/andre/Documents/Xcode/CommandLineUtility/C++Tool/uncrustify/build/Release/uncrustify";
109+
type = run;
110+
},
111+
{
112+
arguments = "-l oc+ -c $SOURCE_ROOT/etc/objc.cfg -q -f $SOURCE_ROOT/tests/input/oc/Fraction.m";
113+
debugger = gdb;
114+
directory = .;
115+
name = "Debug uncrustify from uncrustify with configuration Install (xcodebuild only!)";
116+
script = "/Users/andre/Documents/Xcode/CommandLineUtility/C++Tool/uncrustify/build/Install (xcodebuild only!)/uncrustify";
117+
type = run;
118+
},
119+
);
120+
}

0 commit comments

Comments
 (0)
Please sign in to comment.