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:
Diffstat (limited to 'src/actions/xcode/xcode_project.lua')
-rw-r--r--src/actions/xcode/xcode_project.lua24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/actions/xcode/xcode_project.lua b/src/actions/xcode/xcode_project.lua
index b7f0285..b352c79 100644
--- a/src/actions/xcode/xcode_project.lua
+++ b/src/actions/xcode/xcode_project.lua
@@ -19,7 +19,7 @@
function xcode.buildprjtree(prj)
local tr = premake.project.buildsourcetree(prj)
-
+
-- create a list of build configurations and assign IDs
tr.configs = {}
for _, cfgname in ipairs(prj.solution.configurations) do
@@ -31,14 +31,14 @@
table.insert(tr.configs, cfg)
end
end
-
+
-- convert localized resources from their filesystem layout (English.lproj/MainMenu.xib)
-- to Xcode's display layout (MainMenu.xib/English).
tree.traverse(tr, {
onbranch = function(node)
if path.getextension(node.name) == ".lproj" then
local lang = path.getbasename(node.name) -- "English", "French", etc.
-
+
-- create a new language group for each file it contains
for _, filenode in ipairs(node.children) do
local grpnode = node.parent.children[filenode.name]
@@ -46,18 +46,18 @@
grpnode = tree.insert(node.parent, tree.new(filenode.name))
grpnode.kind = "vgroup"
end
-
+
-- convert the file node to a language node and add to the group
filenode.name = path.getbasename(lang)
tree.insert(grpnode, filenode)
end
-
+
-- remove this directory from the tree
tree.remove(node)
end
end
})
-
+
-- the special folder "Frameworks" lists all linked frameworks
tr.frameworks = tree.new("Frameworks")
for cfg in premake.eachconfig(prj) do
@@ -69,12 +69,12 @@
end
end
end
-
+
-- only add it to the tree if there are frameworks to link
- if #tr.frameworks.children > 0 then
+ if #tr.frameworks.children > 0 then
tree.insert(tr, tr.frameworks)
end
-
+
-- the special folder "Products" holds the target produced by the project; this
-- is populated below
tr.products = tree.insert(tr, tree.new("Products"))
@@ -91,7 +91,7 @@
xcnode.productproxyid = xcode.newid(xcnode, "prodprox")
xcnode.targetproxyid = xcode.newid(xcnode, "targprox")
xcnode.targetdependid = xcode.newid(xcnode, "targdep")
-
+
-- create a grandchild node for the dependency's link target
local cfg = premake.getconfig(dep, prj.configurations[1])
node = tree.insert(xcnode, tree.new(cfg.linktarget.name))
@@ -108,7 +108,7 @@
onnode = function(node)
-- assign IDs to every node in the tree
node.id = xcode.newid(node)
-
+
-- assign build IDs to buildable files
if xcode.getbuildcategory(node) then
node.buildid = xcode.newid(node, "build")
@@ -117,7 +117,7 @@
-- remember key files that are needed elsewhere
if string.endswith(node.name, "Info.plist") then
tr.infoplist = node
- end
+ end
end
}, true)