Xcode - 在特定构建配置中运行Post-Actions脚本

时间:2013-08-23 10:58:03

标签: xcode macos build

只有在项目已在特定构建配置中运行时才会在Xcode中运行post-actions脚本(在Release中发生,不在Debug中)。

非常感谢

1 个答案:

答案 0 :(得分:13)

是;在您的脚本中,将设置$CONFIGURATION变量:

#!/bin/sh

if [ "$CONFIGURATON" != "Release" ]; then
    exit 0
fi

# Does stuff only in Release build

请参阅this SO question以获取您可能感兴趣的其他Xcode变量的列表。