Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Perkins <starkos@industriousone.com>2010-07-13 16:18:33 +0400
committerJason Perkins <starkos@industriousone.com>2010-07-13 16:18:33 +0400
commit851887e129de9bd16cedce4767ece41a3528ab8d (patch)
treec81b85426441ae0c2688c84b9b0c63202935bf61 /src/actions/xcode/xcode_common.lua
parent8b938a42be82be06d6dcbb96f3db6b923d6763e0 (diff)
parent9540e8ac448438091436ba4664c25dd37cd7abad (diff)
Fixed handling of icons in Xcode (bitshifter)
Diffstat (limited to 'src/actions/xcode/xcode_common.lua')
-rw-r--r--src/actions/xcode/xcode_common.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/actions/xcode/xcode_common.lua b/src/actions/xcode/xcode_common.lua
index c430f67..104ae4d 100644
--- a/src/actions/xcode/xcode_common.lua
+++ b/src/actions/xcode/xcode_common.lua
@@ -1,7 +1,7 @@
--
-- xcode_common.lua
-- Functions to generate the different sections of an Xcode project.
--- Copyright (c) 2009 Jason Perkins and the Premake project
+-- Copyright (c) 2009-2010 Jason Perkins and the Premake project
--
local xcode = premake.xcode
@@ -31,6 +31,7 @@
[".strings"] = "Resources",
[".nib"] = "Resources",
[".xib"] = "Resources",
+ [".icns"] = "Resources",
}
return categories[path.getextension(node.name)]
end
@@ -83,6 +84,7 @@
[".plist"] = "text.plist.xml",
[".strings"] = "text.plist.strings",
[".xib"] = "file.xib",
+ [".icns"] = "image.icns",
}
return types[path.getextension(node.path)] or "text"
end