diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-08-13 10:04:58 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-08-13 10:04:58 (GMT) |
commit | b6374b7ae064e689924a88b398ca3eb9ed0a379e (patch) | |
tree | 8c3bc87f1b006e223563f3d2274b16f710e0e8e4 /BuildTools | |
parent | ba1aa621f0441f20b1ed2885832fce9cb15e4e15 (diff) | |
download | swift-contrib-b6374b7ae064e689924a88b398ca3eb9ed0a379e.zip swift-contrib-b6374b7ae064e689924a88b398ca3eb9ed0a379e.tar.bz2 |
Add Nib build tool.
Diffstat (limited to 'BuildTools')
-rw-r--r-- | BuildTools/SCons/Tools/Nib.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/BuildTools/SCons/Tools/Nib.py b/BuildTools/SCons/Tools/Nib.py new file mode 100644 index 0000000..ccfd884 --- /dev/null +++ b/BuildTools/SCons/Tools/Nib.py @@ -0,0 +1,12 @@ +import SCons.Util + +def generate(env) : + env["IBTOOL"] = "ibtool" + env["BUILDERS"]["Nib"] = SCons.Builder.Builder( + action = SCons.Action.Action("$IBTOOL --errors --warnings --notices --output-format human-readable-text --compile $TARGET $SOURCE", cmdstr = "$NIBCOMSTR"), + suffix = ".nib", + src_suffix = ".xib", + single_source = True) + +def exists(env) : + return env["PLATFORM"] == "darwin" |