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

github.com/windirstat/premake-4.x.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJason Perkins <starkos@industriousone.com>2013-08-14 22:28:59 +0400
committerJason Perkins <starkos@industriousone.com>2013-08-14 22:28:59 +0400
commitdf1d0d0c9046bfa15f782344e46cba5333cf875b (patch)
treef237e58eaefbe86ca9ffb8418cbff2633c50cd52 /src
parenta4b4168b7415c472b7f0008dec994045573bd4b6 (diff)
Add bitmap and wave files as known Xcode resource types (Ben Henning)
Diffstat (limited to 'src')
-rw-r--r--src/actions/xcode/xcode_common.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/actions/xcode/xcode_common.lua b/src/actions/xcode/xcode_common.lua
index b9f67de..173d0c4 100644
--- a/src/actions/xcode/xcode_common.lua
+++ b/src/actions/xcode/xcode_common.lua
@@ -32,6 +32,8 @@
[".nib"] = "Resources",
[".xib"] = "Resources",
[".icns"] = "Resources",
+ [".bmp"] = "Resources",
+ [".wav"] = "Resources",
}
return categories[path.getextension(node.name)]
end
@@ -85,6 +87,8 @@
[".strings"] = "text.plist.strings",
[".xib"] = "file.xib",
[".icns"] = "image.icns",
+ [".bmp"] = "image.bmp",
+ [".wav"] = "audio.wav",
}
return types[path.getextension(node.path)] or "text"
end