2015-03-25 17:37:51 +00:00
|
|
|
--
|
|
|
|
-- actions/vstudio/vs2015.lua
|
|
|
|
-- Extend the existing exporters with support for Visual Studio 2015.
|
|
|
|
-- Copyright (c) 2015-2015 Jason Perkins and the Premake project
|
|
|
|
--
|
|
|
|
|
|
|
|
premake.vstudio.vc2015 = {}
|
|
|
|
|
|
|
|
local p = premake
|
|
|
|
local vstudio = p.vstudio
|
|
|
|
local vc2010 = vstudio.vc2010
|
|
|
|
|
|
|
|
local m = vstudio.vc2015
|
|
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
-- Define the Visual Studio 2015 export action.
|
|
|
|
---
|
|
|
|
|
|
|
|
newaction {
|
|
|
|
-- Metadata for the command line and help system
|
|
|
|
|
|
|
|
trigger = "vs2015",
|
|
|
|
shortname = "Visual Studio 2015",
|
|
|
|
description = "Generate Visual Studio 2015 project files",
|
|
|
|
|
|
|
|
-- Visual Studio always uses Windows path and naming conventions
|
|
|
|
|
|
|
|
os = "windows",
|
|
|
|
|
|
|
|
-- The capabilities of this action
|
|
|
|
|
|
|
|
valid_kinds = { "ConsoleApp", "WindowedApp", "StaticLib", "SharedLib", "Makefile", "None" },
|
|
|
|
valid_languages = { "C", "C++", "C#" },
|
|
|
|
valid_tools = {
|
|
|
|
cc = { "msc" },
|
|
|
|
dotnet = { "msnet" },
|
|
|
|
},
|
|
|
|
|
|
|
|
-- Solution and project generation logic
|
|
|
|
|
2015-04-09 05:58:30 +00:00
|
|
|
onSolution = function(sln)
|
|
|
|
vstudio.vs2005.generateSolution(sln)
|
|
|
|
end,
|
|
|
|
onProject = function(prj)
|
|
|
|
vstudio.vs2010.generateProject(prj)
|
|
|
|
end,
|
2015-03-25 17:37:51 +00:00
|
|
|
|
2015-04-10 00:53:04 +00:00
|
|
|
onCleanSolution = function(sln)
|
|
|
|
vstudio.cleanSolution(sln)
|
|
|
|
end,
|
|
|
|
onCleanProject = function(prj)
|
|
|
|
vstudio.cleanProject(prj)
|
|
|
|
end,
|
|
|
|
onCleanTarget = function(prj)
|
|
|
|
vstudio.cleanTarget(prj)
|
|
|
|
end,
|
2015-03-25 17:37:51 +00:00
|
|
|
|
|
|
|
pathVars = vstudio.pathVars,
|
|
|
|
|
|
|
|
-- This stuff is specific to the Visual Studio exporters
|
|
|
|
|
|
|
|
vstudio = {
|
|
|
|
solutionVersion = "12",
|
|
|
|
versionName = "2015",
|
|
|
|
targetFramework = "4.5",
|
|
|
|
toolsVersion = "14.0",
|
|
|
|
filterToolsVersion = "4.0",
|
|
|
|
platformToolset = "v140"
|
|
|
|
}
|
|
|
|
}
|