On Aug 26, 12:43 pm, n179911 <[email protected]> wrote: > Hi, > > In chromium web site, this command is to build all projects: > xcodebuild -project all.xcodeproj -activeconfiguration -target All > > is there a command to clean all project (remove all the .o files)?
Yes, you can use: xcodebuild -project all.xcodeproj -target All clean Also, if you're only interested in building Chromium, you can use src/ chrome/chrome.xcodeproj and then just use: xcodebuild -target chrome xcodebuild will automatically choose the .xcodeproj in your current directory, and by default it will use the active configuration (so that flag is unnecessary). rsesek / @chromium.org --~--~---------~--~----~------------~-------~--~----~ Chromium Discussion mailing list: [email protected] View archives, change email options, or unsubscribe: http://groups.google.com/group/chromium-discuss -~----------~----~----~----~------~----~------~--~---
