通过用户脚本在Xcode中设置Active Build Configuration

时间:2010-06-10 08:54:05

标签: xcode build-automation applescript

如何使用快捷方式在xcode中设置当前项目的活动构建配置?我们的想法是拥有一个简单的方法,可以在设备构建和iphone模拟器之间进行简单的更改。我认为这可以很容易地在AppleScript中完成,然后集成到用户脚本中,但由于我对AppleScript没有任何了解,我请求您的帮助。 谢谢。

1 个答案:

答案 0 :(得分:0)

tell application "Xcode"
    tell first project
        set allTypes to its build configuration types
        set its active build configuration type to item 1 of allTypes
    end tell
end tell