tags:

views:

179

answers:

2

The subject says it all... I simply want xcode to make a beep or any other noise once the compilation process is over. How can I do that?

Thanks,

Adrian

+6  A: 

In your Project menu select "New Build Phase" and then select "New Run Script Build Phase".

You can then add shell commands to that script, i.e.

/usr/bin/say "Build completed"
Alnitak
Cool! Even with speech output! Thanks! :-)
Adrian Grigore
+8  A: 

Better yet, read http://developer.apple.com/documentation/DeveloperTools/Reference/XcodeUserDefaultRef/100-Xcode_User_Defaults/chapter_2_section_7.html

defaults write com.apple.Xcode PBXBuildSuccessSound /path/to/sound.aiff
cdespinosa