Merge pull request #403 from starkos/fix-vs-sln-indentation
Updating VS solutions to new output APIs; fix indentation of ExtensibilityGlobals block
This commit is contained in:
commit
0656a3ccc8
@ -22,6 +22,7 @@
|
||||
|
||||
--
|
||||
-- Return the list of sections contained in the solution.
|
||||
-- TODO: Get rid of this when the MonoDevelop module no longer needs it
|
||||
--
|
||||
|
||||
function sln2005.solutionSections(wks)
|
||||
@ -62,8 +63,8 @@
|
||||
|
||||
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.vstudio.versionName)
|
||||
p.w('Microsoft Visual Studio Solution File, Format Version %d.00', action.vstudio.solutionVersion)
|
||||
p.w('# Visual Studio %s', action.vstudio.versionName)
|
||||
end
|
||||
|
||||
|
||||
@ -118,14 +119,15 @@
|
||||
-- for environment variables.
|
||||
prjpath = prjpath:gsub("$%((.-)%)", "%%%1%%")
|
||||
|
||||
_x('Project("{%s}") = "%s", "%s", "{%s}"', vstudio.tool(prj), prj.name, prjpath, prj.uuid)
|
||||
p.x('Project("{%s}") = "%s", "%s", "{%s}"', vstudio.tool(prj), prj.name, prjpath, prj.uuid)
|
||||
p.push()
|
||||
sln2005.projectdependencies(prj)
|
||||
_p('EndProject')
|
||||
p.pop('EndProject')
|
||||
end,
|
||||
|
||||
onbranch = function(n)
|
||||
_x('Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "%s", "%s", "{%s}"', n.name, n.name, n.uuid)
|
||||
_p('EndProject')
|
||||
p.push('Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "%s", "%s", "{%s}"', n.name, n.name, n.uuid)
|
||||
p.pop('EndProject')
|
||||
end,
|
||||
})
|
||||
end
|
||||
@ -138,11 +140,11 @@
|
||||
function sln2005.projectdependencies(prj)
|
||||
local deps = project.getdependencies(prj, 'dependOnly')
|
||||
if #deps > 0 then
|
||||
_p(1,'ProjectSection(ProjectDependencies) = postProject')
|
||||
p.push('ProjectSection(ProjectDependencies) = postProject')
|
||||
for _, dep in ipairs(deps) do
|
||||
_p(2,'{%s} = {%s}', dep.uuid, dep.uuid)
|
||||
p.w('{%s} = {%s}', dep.uuid, dep.uuid)
|
||||
end
|
||||
_p(1,'EndProjectSection')
|
||||
p.pop('EndProjectSection')
|
||||
end
|
||||
end
|
||||
|
||||
@ -238,22 +240,22 @@
|
||||
|
||||
-- Visual Studio assumes the first configurations as the defaults.
|
||||
if wks.defaultplatform then
|
||||
_p(1,'GlobalSection(SolutionConfigurationPlatforms) = preSolution')
|
||||
p.push('GlobalSection(SolutionConfigurationPlatforms) = preSolution')
|
||||
table.foreachi(sorted, function (cfg)
|
||||
if cfg.platform == wks.defaultplatform then
|
||||
_p(2,'%s = %s', descriptors[cfg], descriptors[cfg])
|
||||
p.w('%s = %s', descriptors[cfg], descriptors[cfg])
|
||||
end
|
||||
end)
|
||||
_p(1,"EndGlobalSection")
|
||||
p.pop("EndGlobalSection")
|
||||
end
|
||||
|
||||
_p(1,'GlobalSection(SolutionConfigurationPlatforms) = preSolution')
|
||||
p.push('GlobalSection(SolutionConfigurationPlatforms) = preSolution')
|
||||
table.foreachi(sorted, function (cfg)
|
||||
if not wks.defaultplatform or cfg.platform ~= wks.defaultplatform then
|
||||
_p(2,'%s = %s', descriptors[cfg], descriptors[cfg])
|
||||
p.w('%s = %s', descriptors[cfg], descriptors[cfg])
|
||||
end
|
||||
end)
|
||||
_p(1,"EndGlobalSection")
|
||||
p.pop("EndGlobalSection")
|
||||
|
||||
-- For each project in the solution...
|
||||
sln2005.projectConfigurationPlatforms(wks, sorted, descriptors)
|
||||
@ -266,9 +268,9 @@
|
||||
--
|
||||
|
||||
function sln2005.properties(wks)
|
||||
_p('\tGlobalSection(SolutionProperties) = preSolution')
|
||||
_p('\t\tHideSolutionNode = FALSE')
|
||||
_p('\tEndGlobalSection')
|
||||
p.push('GlobalSection(SolutionProperties) = preSolution')
|
||||
p.w('HideSolutionNode = FALSE')
|
||||
p.pop('EndGlobalSection')
|
||||
end
|
||||
|
||||
|
||||
@ -277,18 +279,18 @@
|
||||
-- any solution groups.
|
||||
--
|
||||
|
||||
function sln2005.NestedProjects(wks)
|
||||
function sln2005.nestedProjects(wks)
|
||||
local tr = p.workspace.grouptree(wks)
|
||||
if tree.hasbranches(tr) then
|
||||
_p(1,'GlobalSection(NestedProjects) = preSolution')
|
||||
p.push('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)
|
||||
p.w('{%s} = {%s}', (n.project or n).uuid, n.parent.uuid)
|
||||
end
|
||||
end
|
||||
})
|
||||
_p(1,'EndGlobalSection')
|
||||
p.pop('EndGlobalSection')
|
||||
end
|
||||
end
|
||||
|
||||
@ -351,7 +353,7 @@
|
||||
return {
|
||||
sln2005.configurationPlatforms,
|
||||
sln2005.properties,
|
||||
sln2005.NestedProjects,
|
||||
sln2005.nestedProjects,
|
||||
sln2005.extensibilityGlobals,
|
||||
}
|
||||
end
|
||||
|
@ -44,9 +44,9 @@
|
||||
function suite.dependency_onCppProjects()
|
||||
prepare("C++")
|
||||
test.capture [[
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{2151E83B-997F-4A9D-955D-380157E88C31} = {2151E83B-997F-4A9D-955D-380157E88C31}
|
||||
EndProjectSection
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{2151E83B-997F-4A9D-955D-380157E88C31} = {2151E83B-997F-4A9D-955D-380157E88C31}
|
||||
EndProjectSection
|
||||
]]
|
||||
end
|
||||
|
||||
@ -58,9 +58,9 @@
|
||||
function suite.dependency_onCSharpProjects()
|
||||
prepare("C#")
|
||||
test.capture [[
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{2151E83B-997F-4A9D-955D-380157E88C31} = {2151E83B-997F-4A9D-955D-380157E88C31}
|
||||
EndProjectSection
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{2151E83B-997F-4A9D-955D-380157E88C31} = {2151E83B-997F-4A9D-955D-380157E88C31}
|
||||
EndProjectSection
|
||||
]]
|
||||
end
|
||||
|
||||
@ -74,9 +74,9 @@
|
||||
_ACTION = "vs2010"
|
||||
prepare("C#")
|
||||
test.capture [[
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{2151E83B-997F-4A9D-955D-380157E88C31} = {2151E83B-997F-4A9D-955D-380157E88C31}
|
||||
EndProjectSection
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{2151E83B-997F-4A9D-955D-380157E88C31} = {2151E83B-997F-4A9D-955D-380157E88C31}
|
||||
EndProjectSection
|
||||
]]
|
||||
end
|
||||
|
||||
@ -90,8 +90,8 @@
|
||||
_ACTION = "vs2012"
|
||||
prepare("C#")
|
||||
test.capture [[
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{2151E83B-997F-4A9D-955D-380157E88C31} = {2151E83B-997F-4A9D-955D-380157E88C31}
|
||||
EndProjectSection
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{2151E83B-997F-4A9D-955D-380157E88C31} = {2151E83B-997F-4A9D-955D-380157E88C31}
|
||||
EndProjectSection
|
||||
]]
|
||||
end
|
||||
|
@ -24,7 +24,7 @@
|
||||
end
|
||||
|
||||
local function prepare()
|
||||
sln2005.NestedProjects(wks)
|
||||
sln2005.nestedProjects(wks)
|
||||
end
|
||||
|
||||
|
||||
@ -49,7 +49,7 @@
|
||||
project "MyProject2"
|
||||
prepare()
|
||||
test.capture [[
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
]]
|
||||
end
|
||||
|
||||
@ -63,9 +63,9 @@
|
||||
project "MyProject"
|
||||
prepare()
|
||||
test.capture [[
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{42B5DBC6-AE1F-903D-F75D-41E363076E92} = {0B5CD40C-7770-FCBD-40F2-9F1DACC5F8EE}
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{42B5DBC6-AE1F-903D-F75D-41E363076E92} = {0B5CD40C-7770-FCBD-40F2-9F1DACC5F8EE}
|
||||
EndGlobalSection
|
||||
]]
|
||||
end
|
||||
|
||||
@ -79,10 +79,10 @@
|
||||
project "MyProject"
|
||||
prepare()
|
||||
test.capture [[
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{96080FE9-82C0-5036-EBC7-2992D79EEB26} = {0B5CD40C-7770-FCBD-40F2-9F1DACC5F8EE}
|
||||
{42B5DBC6-AE1F-903D-F75D-41E363076E92} = {96080FE9-82C0-5036-EBC7-2992D79EEB26}
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{96080FE9-82C0-5036-EBC7-2992D79EEB26} = {0B5CD40C-7770-FCBD-40F2-9F1DACC5F8EE}
|
||||
{42B5DBC6-AE1F-903D-F75D-41E363076E92} = {96080FE9-82C0-5036-EBC7-2992D79EEB26}
|
||||
EndGlobalSection
|
||||
]]
|
||||
end
|
||||
|
||||
@ -97,8 +97,8 @@
|
||||
project "MyProject2"
|
||||
prepare()
|
||||
test.capture [[
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{42B5DBC6-AE1F-903D-F75D-41E363076E92} = {0B5CD40C-7770-FCBD-40F2-9F1DACC5F8EE}
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{42B5DBC6-AE1F-903D-F75D-41E363076E92} = {0B5CD40C-7770-FCBD-40F2-9F1DACC5F8EE}
|
||||
EndGlobalSection
|
||||
]]
|
||||
end
|
||||
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user