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.
98 lines
2.3 KiB
Lua
Executable File
98 lines
2.3 KiB
Lua
Executable File
--
|
|
-- Name: codelite/codelite_workspace.lua
|
|
-- Purpose: Generate a CodeLite workspace.
|
|
-- Author: Ryan Pusztai
|
|
-- Modified by: Andrea Zanellato
|
|
-- Manu Evans
|
|
-- Created: 2013/05/06
|
|
-- Copyright: (c) 2008-2015 Jason Perkins and the Premake project
|
|
--
|
|
|
|
local p = premake
|
|
local project = p.project
|
|
local workspace = p.workspace
|
|
local tree = p.tree
|
|
local codelite = p.modules.codelite
|
|
|
|
codelite.workspace = {}
|
|
local m = codelite.workspace
|
|
|
|
--
|
|
-- Generate a CodeLite workspace
|
|
--
|
|
function m.generate(wks)
|
|
p.utf8()
|
|
|
|
--
|
|
-- Header
|
|
--
|
|
_p('<?xml version="1.0" encoding="UTF-8"?>')
|
|
|
|
local tagsdb = ""
|
|
-- local tagsdb = "./" .. wks.name .. ".tags"
|
|
_p('<CodeLite_Workspace Name="%s" Database="%s" SWTLW="No">', wks.name, tagsdb)
|
|
|
|
--
|
|
-- Project list
|
|
--
|
|
local tr = workspace.grouptree(wks)
|
|
tree.traverse(tr, {
|
|
onleaf = function(n)
|
|
local prj = n.project
|
|
|
|
-- Build a relative path from the workspace file to the project file
|
|
local prjpath = p.filename(prj, ".project")
|
|
prjpath = path.getrelative(prj.workspace.location, prjpath)
|
|
|
|
local active = iif(prj.name == wks.startproject, ' Active="Yes"', '')
|
|
_x(1, '<Project Name="%s" Path="%s"%s/>', prj.name, prjpath, active)
|
|
end,
|
|
|
|
onbranch = function(n)
|
|
-- TODO: not sure what situation this appears...?
|
|
-- premake5.lua emit's one of these for 'contrib', which is a top-level folder with the zip projects
|
|
end,
|
|
})
|
|
|
|
--
|
|
-- Configurations
|
|
--
|
|
|
|
-- count the number of platforms
|
|
local platformsPresent = {}
|
|
local numPlatforms = 0
|
|
|
|
for cfg in workspace.eachconfig(wks) do
|
|
local platform = cfg.platform
|
|
if platform and not platformsPresent[platform] then
|
|
numPlatforms = numPlatforms + 1
|
|
platformsPresent[platform] = true
|
|
end
|
|
end
|
|
|
|
if numPlatforms >= 2 then
|
|
codelite.workspace.multiplePlatforms = true
|
|
end
|
|
|
|
-- for each workspace config
|
|
_p(1, '<BuildMatrix>')
|
|
for cfg in workspace.eachconfig(wks) do
|
|
|
|
local cfgname = codelite.cfgname(cfg)
|
|
_p(2, '<WorkspaceConfiguration Name="%s" Selected="yes">', cfgname)
|
|
|
|
local tr = workspace.grouptree(wks)
|
|
tree.traverse(tr, {
|
|
onleaf = function(n)
|
|
local prj = n.project
|
|
_p(3, '<Project Name="%s" ConfigName="%s"/>', prj.name, cfgname)
|
|
end
|
|
})
|
|
_p(2, '</WorkspaceConfiguration>')
|
|
|
|
end
|
|
_p(1, '</BuildMatrix>')
|
|
|
|
_p('</CodeLite_Workspace>')
|
|
end
|