The following are the steps I would like to have:
- launch xcode
- open a specific xcodeproj file
- build and debug it
- quit xcode
The following is my first attempt to write AppleScript:
tell application "Xcode"
tell project "iphone_manual_client"
debug
end tell
close project "iphone_manual_client"
end tell
This only works when xcode has this project opened. I would like to have the project to be opened only when it is necessary to do so.
Can any AppleScript gurus out there points me to the right direction? Thanks.
-chuan-