public
Fork of Caged/gitnub
Description: A Gitk-like application written in RubyCocoa that looks like it belongs on a Mac. See the wiki for downloads and screenshots.
Homepage: http://alternateidea.com
Clone URL: git://github.com/auser/gitnub.git
Search Repo:
Add OBJROOT=build/ and SYMROOT=build/ to all xcodebuild tasks besides 
-list
kballard (author)
Thu Mar 13 15:12:13 -0700 2008
commit  fc4de4ef7a337d4b391fad6ff33d357cf2bad074
tree    213fcf53eaab928a71d62a81b230f917141c7e0b
parent  4f75917dc36de9d8827f378600b1d821931f09bc
...
33
34
35
36
 
37
38
39
...
123
124
125
126
 
127
128
129
...
135
136
137
138
 
139
140
141
...
33
34
35
 
36
37
38
39
...
123
124
125
 
126
127
128
129
...
135
136
137
 
138
139
140
141
0
@@ -33,7 +33,7 @@
0
 
0
 desc 'Deep clean of everything'
0
 task :clean do
0
- puts %x{ xcodebuild -alltargets clean }
0
+ puts %x{ xcodebuild -alltargets clean OBJROOT=build/ SYMROOT=build/ }
0
 end
0
 
0
 desc "Add files to Xcode project"
0
@@ -123,7 +123,7 @@
0
      targets.each do |target|
0
        desc "#{action} #{target}"
0
        task "#{target}" do |t|
0
- puts %x{ xcodebuild -target '#{target}' #{action} }
0
+ puts %x{ xcodebuild -target '#{target}' #{action} OBJROOT=build/ SYMROOT=build/ }
0
        end
0
 
0
        # alias the task above using a massaged name
0
@@ -135,7 +135,7 @@
0
          configs.each do |config|
0
            desc "#{action} #{target} #{config}"
0
            task "#{config}" do |t|
0
- puts %x{ xcodebuild -target '#{target}' -configuration '#{config}' #{action} }
0
+ puts %x{ xcodebuild -target '#{target}' -configuration '#{config}' #{action} SYMROOT=build/ OBJROOT=build/ }
0
            end
0
          end
0
        end

Comments

    No one has commented yet.