af7b674265
As discussed numerous times, get rid of the submodule approach for core modules and just included the sources directly in the main repository. I have no idea how this will play with existing working copies. It might be necessary to [manually clear out the existing submodules](http://stackoverflow.com/questions/1260748) first.
85 lines
1.6 KiB
Lua
85 lines
1.6 KiB
Lua
---
|
|
-- xcode/xcode4_workspace.lua
|
|
-- Generate an Xcode workspace.
|
|
-- Author Mihai Sebea
|
|
-- Modified by Jason Perkins
|
|
-- Copyright (c) 2014-2015 Jason Perkins and the Premake project
|
|
---
|
|
|
|
local p = premake
|
|
local m = p.modules.xcode
|
|
|
|
|
|
|
|
---
|
|
-- Generate an Xcode contents.xcworkspacedata file.
|
|
---
|
|
|
|
m.elements.workspace = function(wks)
|
|
return {
|
|
m.xmlDeclaration,
|
|
m.workspace,
|
|
m.workspaceFileRefs,
|
|
m.workspaceTail,
|
|
}
|
|
end
|
|
|
|
function m.generateWorkspace(wks)
|
|
m.prepareWorkspace(wks)
|
|
p.callArray(m.elements.workspace, wks)
|
|
end
|
|
|
|
|
|
function m.workspace()
|
|
p.push('<Workspace')
|
|
p.w('version = "1.0">')
|
|
end
|
|
|
|
|
|
function m.workspaceTail()
|
|
-- Don't output final newline. Xcode doesn't.
|
|
premake.out('</Workspace>')
|
|
end
|
|
|
|
|
|
---
|
|
-- Generate the list of project references.
|
|
---
|
|
|
|
m.elements.workspaceFileRef = function(prj)
|
|
return {
|
|
m.workspaceLocation,
|
|
}
|
|
end
|
|
|
|
function m.workspaceFileRefs(wks)
|
|
for prj in p.workspace.eachproject(wks) do
|
|
p.push('<FileRef')
|
|
local contents = p.capture(function()
|
|
p.callArray(m.elements.workspaceFileRef, prj)
|
|
end)
|
|
p.outln(contents .. ">")
|
|
p.pop('</FileRef>')
|
|
end
|
|
end
|
|
|
|
|
|
|
|
---------------------------------------------------------------------------
|
|
--
|
|
-- Handlers for individual project elements
|
|
--
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
function m.workspaceLocation(prj)
|
|
local fname = p.filename(prj, ".xcodeproj")
|
|
fname = path.getrelative(prj.workspace.location, fname)
|
|
p.w('location = "group:%s"', fname)
|
|
end
|
|
|
|
|
|
function m.xmlDeclaration()
|
|
p.xmlUtf8(true)
|
|
end
|