premake/src/actions/vstudio/vs2005_solution.lua

243 lines
6.1 KiB
Lua
Raw Normal View History

--
-- vs2005_solution.lua
-- Generate a Visual Studio 2005-2012 solution.
-- Copyright (c) 2009-2013 Jason Perkins and the Premake project
--
premake.vstudio.sln2005 = {}
local vstudio = premake.vstudio
local sln2005 = premake.vstudio.sln2005
local solution = premake.solution
local project = premake.project
2012-12-18 16:09:50 +00:00
local tree = premake.tree
--
-- Generate a Visual Studio 200x solution, with support for the new platforms API.
--
function sln2005.generate(sln)
-- Mark the file as Unicode
_p('\239\187\191')
sln2005.reorderProjects(sln)
sln2005.header()
2012-12-18 16:09:50 +00:00
sln2005.projects(sln)
_p('Global')
sln2005.configurationPlatforms(sln)
sln2005.properties(sln)
2012-12-18 16:09:50 +00:00
sln2005.NestedProjects(sln)
_p('EndGlobal')
end
--
-- Generate the solution header. Each Visual Studio action definition
-- should include its own version.
--
function sln2005.header()
local action = premake.action.current()
_p('Microsoft Visual Studio Solution File, Format Version %d.00', action.vstudio.solutionVersion)
_p('# Visual Studio %s', _ACTION:sub(3))
end
--
-- If a startup project is specified, move it (and any enclosing groups)
-- to the front of the project list. This will make Visual Studio treat
-- it like a startup project.
--
-- I force the new ordering into the tree so that it will get applied to
-- all sections of the solution; otherwise the first change to the solution
-- in the IDE will cause the orderings to get rewritten.
--
function sln2005.reorderProjects(sln)
if sln.startproject then
local np
local tr = solution.grouptree(sln)
tree.traverse(tr, {
onleaf = function(n)
if n.project.name == sln.startproject then
np = n
end
end
})
while np and np.parent do
local p = np.parent
local i = table.indexof(p.children, np)
table.remove(p.children, i)
table.insert(p.children, 1, np)
np = p
end
end
end
--
2012-12-18 16:09:50 +00:00
-- Write out the list of projects and groups contained by the solution.
--
2012-12-18 16:09:50 +00:00
function sln2005.projects(sln)
local tr = solution.grouptree(sln)
tree.traverse(tr, {
onleaf = function(n)
local prj = n.project
-- Build a relative path from the solution file to the project file
local prjpath = vstudio.projectfile(prj)
prjpath = path.translate(path.getrelative(prj.solution.location, prjpath))
2012-12-18 16:09:50 +00:00
_x('Project("{%s}") = "%s", "%s", "{%s}"', vstudio.tool(prj), prj.name, prjpath, prj.uuid)
if _ACTION < "vs2012" then
sln2005.projectdependencies(prj)
2012-12-18 16:09:50 +00:00
end
_p('EndProject')
end,
2012-12-18 16:09:50 +00:00
onbranch = function(n)
_x('Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "%s", "%s", "{%s}"', n.name, n.name, n.uuid)
_p('EndProject')
end,
2012-12-18 16:09:50 +00:00
})
end
--
-- Write out the list of project dependencies for a particular project.
--
function sln2005.projectdependencies(prj)
local deps = project.getdependencies(prj)
if #deps > 0 then
_p(1,'ProjectSection(ProjectDependencies) = postProject')
for _, dep in ipairs(deps) do
_p(2,'{%s} = {%s}', dep.uuid, dep.uuid)
end
_p(1,'EndProjectSection')
end
end
--
-- Write out the tables that map solution configurations to project configurations.
--
function sln2005.configurationPlatforms(sln)
local descriptors = {}
local sorted = {}
for cfg in solution.eachconfig(sln) do
-- Create a Visual Studio solution descriptor (i.e. Debug|Win32) for
-- this solution configuration. I need to use it in a few different places
-- below so it makes sense to precompute it up front.
local platform = vstudio.solutionPlatform(cfg)
descriptors[cfg] = string.format("%s|%s", cfg.buildcfg, platform)
-- Also add the configuration to an indexed table which I can sort below
table.insert(sorted, cfg)
end
-- Sort the solution configurations to match Visual Studio's preferred
-- order, which appears to be a simple alpha sort on the descriptors.
table.sort(sorted, function(cfg0, cfg1)
return descriptors[cfg0]:lower() < descriptors[cfg1]:lower()
end)
-- Now I can output the sorted list of solution configuration descriptors
_p(1,'GlobalSection(SolutionConfigurationPlatforms) = preSolution')
table.foreachi(sorted, function (cfg)
_p(2,'%s = %s', descriptors[cfg], descriptors[cfg])
end)
_p(1,"EndGlobalSection")
-- For each project in the solution...
_p(1,"GlobalSection(ProjectConfigurationPlatforms) = postSolution")
local tr = solution.grouptree(sln)
tree.traverse(tr, {
onleaf = function(n)
local prj = n.project
-- For each (sorted) configuration in the solution...
table.foreachi(sorted, function (cfg)
local platform, architecture
-- Look up the matching project configuration. If none exist, this
-- configuration has been excluded from the project, and should map
-- to closest available project configuration instead.
local prjCfg = project.getconfig(prj, cfg.buildcfg, cfg.platform)
local excluded = (prjCfg == nil)
if excluded then
prjCfg = project.findClosestMatch(prj, cfg.buildcfg, cfg.platform)
end
local descriptor = descriptors[cfg]
local platform = vstudio.projectPlatform(prjCfg)
local architecture = vstudio.archFromConfig(prjCfg, true)
_p(2,'{%s}.%s.ActiveCfg = %s|%s', prj.uuid, descriptor, platform, architecture)
-- Only output Build.0 entries for buildable configurations
if not excluded and prjCfg.kind ~= premake.NONE then
_p(2,'{%s}.%s.Build.0 = %s|%s', prj.uuid, descriptor, platform, architecture)
end
end)
end
})
_p(1,"EndGlobalSection")
end
--
-- Write out contents of the SolutionProperties section; currently unused.
--
function sln2005.properties(sln)
_p('\tGlobalSection(SolutionProperties) = preSolution')
_p('\t\tHideSolutionNode = FALSE')
_p('\tEndGlobalSection')
end
2012-12-18 16:09:50 +00:00
--
-- Write out the NestedProjects block, which describes the structure of
-- any solution groups.
--
function sln2005.NestedProjects(sln)
local tr = solution.grouptree(sln)
if tree.hasbranches(tr) then
2012-12-18 16:09:50 +00:00
_p(1,'GlobalSection(NestedProjects) = preSolution')
tree.traverse(tr, {
onnode = function(n)
if n.parent.uuid then
_p(2,'{%s} = {%s}', (n.project or n).uuid, n.parent.uuid)
end
end
})
_p(1,'EndGlobalSection')
end
end