2012-08-01 19:28:21 +00:00
|
|
|
--
|
|
|
|
-- vs2010_vcxproj.lua
|
|
|
|
-- Generate a Visual Studio 201x C/C++ project.
|
2013-02-11 18:25:33 +00:00
|
|
|
-- Copyright (c) 2009-2013 Jason Perkins and the Premake project
|
2012-08-01 19:28:21 +00:00
|
|
|
--
|
|
|
|
|
2012-11-27 15:18:06 +00:00
|
|
|
premake.vstudio.vc2010 = {}
|
2012-08-01 19:28:21 +00:00
|
|
|
local vc2010 = premake.vstudio.vc2010
|
|
|
|
local vstudio = premake.vstudio
|
|
|
|
local project = premake5.project
|
|
|
|
local config = premake5.config
|
|
|
|
local tree = premake.tree
|
|
|
|
|
|
|
|
|
2013-04-25 15:45:44 +00:00
|
|
|
---
|
|
|
|
-- Add namespace for element definition lists for premake.callsequence()
|
|
|
|
---
|
|
|
|
|
|
|
|
vc2010.elements = {}
|
|
|
|
|
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
--
|
|
|
|
-- Generate a Visual Studio 201x C++ project, with support for the new platforms API.
|
|
|
|
--
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.generate(prj)
|
2012-08-01 19:28:21 +00:00
|
|
|
io.indent = " "
|
2012-12-23 22:41:49 +00:00
|
|
|
io.utf8()
|
2012-08-01 19:28:21 +00:00
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
vc2010.project("Build")
|
2012-08-01 19:28:21 +00:00
|
|
|
vc2010.projectConfigurations(prj)
|
|
|
|
vc2010.globals(prj)
|
|
|
|
|
|
|
|
_p(1,'<Import Project="$(VCTargetsPath)\\Microsoft.Cpp.Default.props" />')
|
|
|
|
|
|
|
|
for cfg in project.eachconfig(prj) do
|
|
|
|
vc2010.configurationProperties(cfg)
|
|
|
|
end
|
|
|
|
|
|
|
|
_p(1,'<Import Project="$(VCTargetsPath)\\Microsoft.Cpp.props" />')
|
|
|
|
_p(1,'<ImportGroup Label="ExtensionSettings">')
|
|
|
|
_p(1,'</ImportGroup>')
|
|
|
|
|
|
|
|
for cfg in project.eachconfig(prj) do
|
2013-02-11 18:25:33 +00:00
|
|
|
vc2010.propertySheets(cfg)
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
_p(1,'<PropertyGroup Label="UserMacros" />')
|
|
|
|
|
|
|
|
for cfg in project.eachconfig(prj) do
|
|
|
|
vc2010.outputProperties(cfg)
|
2013-04-03 15:53:00 +00:00
|
|
|
vc2010.nmakeProperties(cfg)
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
for cfg in project.eachconfig(prj) do
|
2013-04-03 15:53:00 +00:00
|
|
|
vc2010.itemDefinitionGroup(cfg)
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
|
2013-03-04 16:45:27 +00:00
|
|
|
vc2010.assemblyReferences(prj)
|
2013-02-11 18:25:33 +00:00
|
|
|
vc2010.files(prj)
|
|
|
|
vc2010.projectReferences(prj)
|
2012-08-01 19:28:21 +00:00
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
vc2010.import(prj)
|
2013-01-17 18:19:49 +00:00
|
|
|
|
2013-05-21 12:48:22 +00:00
|
|
|
io.printf('</Project>')
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Output the XML declaration and opening <Project> tag.
|
|
|
|
--
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.project(target)
|
2012-08-01 19:28:21 +00:00
|
|
|
_p('<?xml version="1.0" encoding="utf-8"?>')
|
|
|
|
|
|
|
|
local defaultTargets = ""
|
|
|
|
if target then
|
|
|
|
defaultTargets = string.format(' DefaultTargets="%s"', target)
|
|
|
|
end
|
|
|
|
|
|
|
|
_p('<Project%s ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">', defaultTargets)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Write out the list of project configurations, which pairs build
|
|
|
|
-- configurations with architectures.
|
|
|
|
--
|
|
|
|
|
|
|
|
function vc2010.projectConfigurations(prj)
|
2013-04-03 15:53:00 +00:00
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
-- build a list of all architectures used in this project
|
|
|
|
local platforms = {}
|
|
|
|
for cfg in project.eachconfig(prj) do
|
2012-11-17 20:49:06 +00:00
|
|
|
local arch = vstudio.archFromConfig(cfg, true)
|
2012-08-01 19:28:21 +00:00
|
|
|
if not table.contains(platforms, arch) then
|
|
|
|
table.insert(platforms, arch)
|
|
|
|
end
|
|
|
|
end
|
2013-01-12 16:52:59 +00:00
|
|
|
|
2012-11-17 20:49:06 +00:00
|
|
|
local configs = {}
|
2012-08-01 19:28:21 +00:00
|
|
|
_p(1,'<ItemGroup Label="ProjectConfigurations">')
|
|
|
|
for cfg in project.eachconfig(prj) do
|
|
|
|
for _, arch in ipairs(platforms) do
|
2012-11-17 20:49:06 +00:00
|
|
|
local prjcfg = vstudio.projectConfig(cfg, arch)
|
|
|
|
if not configs[prjcfg] then
|
|
|
|
configs[prjcfg] = prjcfg
|
|
|
|
_x(2,'<ProjectConfiguration Include="%s">', vstudio.projectConfig(cfg, arch))
|
|
|
|
_x(3,'<Configuration>%s</Configuration>', vstudio.projectPlatform(cfg))
|
|
|
|
_p(3,'<Platform>%s</Platform>', arch)
|
|
|
|
_p(2,'</ProjectConfiguration>')
|
|
|
|
end
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
_p(1,'</ItemGroup>')
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Write out the Globals property group.
|
|
|
|
--
|
|
|
|
|
|
|
|
function vc2010.globals(prj)
|
2013-02-11 18:25:33 +00:00
|
|
|
vc2010.propertyGroup(nil, "Globals")
|
|
|
|
vc2010.projectGuid(prj)
|
2013-01-12 16:52:59 +00:00
|
|
|
|
|
|
|
-- try to determine what kind of targets we're building here
|
2013-04-03 15:53:00 +00:00
|
|
|
local isWin, isManaged, isMakefile
|
2013-01-12 16:52:59 +00:00
|
|
|
for cfg in project.eachconfig(prj) do
|
|
|
|
if cfg.system == premake.WINDOWS then
|
|
|
|
isWin = true
|
|
|
|
end
|
|
|
|
if cfg.flags.Managed then
|
|
|
|
isManaged = true
|
|
|
|
end
|
2013-06-26 11:28:57 +00:00
|
|
|
if vstudio.isMakefile(cfg) then
|
2013-04-03 15:53:00 +00:00
|
|
|
isMakefile = true
|
|
|
|
end
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
2013-01-12 16:52:59 +00:00
|
|
|
|
|
|
|
if isWin then
|
2013-04-03 15:53:00 +00:00
|
|
|
if isMakefile then
|
|
|
|
_p(2,'<Keyword>MakeFileProj</Keyword>')
|
2013-01-12 16:52:59 +00:00
|
|
|
else
|
2013-04-03 15:53:00 +00:00
|
|
|
if isManaged then
|
|
|
|
_p(2,'<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>')
|
|
|
|
_p(2,'<Keyword>ManagedCProj</Keyword>')
|
|
|
|
else
|
|
|
|
_p(2,'<Keyword>Win32Proj</Keyword>')
|
|
|
|
end
|
|
|
|
_p(2,'<RootNamespace>%s</RootNamespace>', prj.name)
|
2013-01-12 16:52:59 +00:00
|
|
|
end
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
|
2013-05-01 16:08:41 +00:00
|
|
|
vc2010.projectName(prj)
|
2012-08-01 19:28:21 +00:00
|
|
|
_p(1,'</PropertyGroup>')
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
--
|
2013-01-12 16:52:59 +00:00
|
|
|
-- Write out the configuration property group: what kind of binary it
|
2012-08-01 19:28:21 +00:00
|
|
|
-- produces, and some global settings.
|
|
|
|
--
|
|
|
|
|
2013-04-25 15:45:44 +00:00
|
|
|
vc2010.elements.configurationProperties = {
|
|
|
|
"configurationType",
|
|
|
|
"useDebugLibraries",
|
|
|
|
"useOfMfc",
|
|
|
|
"clrSupport",
|
|
|
|
"characterSet",
|
|
|
|
"nmakeOutDirs",
|
|
|
|
}
|
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
function vc2010.configurationProperties(cfg)
|
2013-02-11 18:25:33 +00:00
|
|
|
vc2010.propertyGroup(cfg, "Configuration")
|
2013-04-25 20:05:08 +00:00
|
|
|
premake.callarray(vc2010, vc2010.elements.configurationProperties, cfg)
|
2012-08-01 19:28:21 +00:00
|
|
|
_p(1,'</PropertyGroup>')
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Write out the default property sheets for a configuration.
|
|
|
|
--
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.propertySheets(cfg)
|
2012-08-01 19:28:21 +00:00
|
|
|
_p(1,'<ImportGroup Label="PropertySheets" %s>', vc2010.condition(cfg))
|
|
|
|
_p(2,'<Import Project="$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props" Condition="exists(\'$(UserRootDir)\\Microsoft.Cpp.$(Platform).user.props\')" Label="LocalAppDataPlatform" />')
|
|
|
|
_p(1,'</ImportGroup>')
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
--
|
2013-04-03 15:53:00 +00:00
|
|
|
-- Write the output property group, which includes the output and intermediate
|
2012-08-01 19:28:21 +00:00
|
|
|
-- directories, manifest, etc.
|
|
|
|
--
|
|
|
|
|
2013-04-25 20:05:08 +00:00
|
|
|
vc2010.elements.outputProperties = {
|
|
|
|
"propertyGroup",
|
|
|
|
"linkIncremental",
|
|
|
|
"ignoreImportLibrary",
|
|
|
|
"outDir",
|
|
|
|
"outputFile",
|
|
|
|
"intDir",
|
|
|
|
"targetName",
|
|
|
|
"targetExt",
|
|
|
|
"imageXexOutput",
|
|
|
|
"generateManifest",
|
|
|
|
}
|
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
function vc2010.outputProperties(cfg)
|
2013-06-26 11:28:57 +00:00
|
|
|
if not vstudio.isMakefile(cfg) then
|
2013-04-25 20:05:08 +00:00
|
|
|
premake.callarray(vc2010, vc2010.elements.outputProperties, cfg)
|
2013-04-03 15:53:00 +00:00
|
|
|
_p(1,'</PropertyGroup>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Write the NMake property group for Makefile projects, which includes the custom
|
|
|
|
-- build commands, output file location, etc.
|
|
|
|
--
|
|
|
|
|
|
|
|
function vc2010.nmakeProperties(cfg)
|
2013-06-26 11:28:57 +00:00
|
|
|
if vstudio.isMakefile(cfg) then
|
2013-04-03 15:53:00 +00:00
|
|
|
vc2010.propertyGroup(cfg)
|
|
|
|
vc2010.nmakeOutput(cfg)
|
2013-04-07 18:30:58 +00:00
|
|
|
vc2010.nmakeCommandLine(cfg, cfg.buildcommands, "Build")
|
|
|
|
vc2010.nmakeCommandLine(cfg, cfg.rebuildcommands, "ReBuild")
|
|
|
|
vc2010.nmakeCommandLine(cfg, cfg.cleancommands, "Clean")
|
2013-04-03 15:53:00 +00:00
|
|
|
_p(1,'</PropertyGroup>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Write a configuration's item definition group, which contains all
|
|
|
|
-- of the per-configuration compile and link settings.
|
|
|
|
--
|
|
|
|
|
2013-04-25 20:05:08 +00:00
|
|
|
vc2010.elements.itemDefinitionGroup = {
|
|
|
|
"clCompile",
|
|
|
|
"resourceCompile",
|
|
|
|
"link",
|
|
|
|
"buildEvents",
|
|
|
|
"imageXex",
|
|
|
|
"deploy",
|
|
|
|
}
|
|
|
|
|
2013-04-03 15:53:00 +00:00
|
|
|
function vc2010.itemDefinitionGroup(cfg)
|
2013-06-26 11:28:57 +00:00
|
|
|
if not vstudio.isMakefile(cfg) then
|
2013-04-03 15:53:00 +00:00
|
|
|
_p(1,'<ItemDefinitionGroup %s>', vc2010.condition(cfg))
|
2013-04-25 20:05:08 +00:00
|
|
|
premake.callarray(vc2010, vc2010.elements.itemDefinitionGroup, cfg)
|
2013-04-03 15:53:00 +00:00
|
|
|
_p(1,'</ItemDefinitionGroup>')
|
|
|
|
|
|
|
|
else
|
|
|
|
if cfg == project.getfirstconfig(cfg.project) then
|
|
|
|
_p(1,'<ItemDefinitionGroup>')
|
|
|
|
_p(1,'</ItemDefinitionGroup>')
|
|
|
|
end
|
|
|
|
end
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Write the the <ClCompile> compiler settings block.
|
|
|
|
--
|
|
|
|
|
2013-04-30 16:38:11 +00:00
|
|
|
vc2010.elements.clCompile = {
|
|
|
|
"precompiledHeader",
|
|
|
|
"warningLevel",
|
|
|
|
"treatWarningAsError",
|
|
|
|
"basicRuntimeChecks",
|
|
|
|
"clCompilePreprocessorDefinitions",
|
|
|
|
"clCompileAdditionalIncludeDirectories",
|
|
|
|
"forceIncludes",
|
|
|
|
"debugInformationFormat",
|
|
|
|
"programDataBaseFileName",
|
|
|
|
"optimization",
|
|
|
|
"functionLevelLinking",
|
|
|
|
"intrinsicFunctions",
|
|
|
|
"minimalRebuild",
|
|
|
|
"omitFramePointers",
|
|
|
|
"stringPooling",
|
|
|
|
"runtimeLibrary",
|
|
|
|
"exceptionHandling",
|
|
|
|
"runtimeTypeInfo",
|
|
|
|
"treatWChar_tAsBuiltInType",
|
|
|
|
"floatingPointModel",
|
|
|
|
"enableEnhancedInstructionSet",
|
|
|
|
"multiProcessorCompilation",
|
|
|
|
"additionalCompileOptions",
|
|
|
|
"compileAs",
|
|
|
|
}
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.clCompile(cfg)
|
2013-04-25 20:05:08 +00:00
|
|
|
_p(2,'<ClCompile>')
|
2013-04-30 16:38:11 +00:00
|
|
|
premake.callarray(vc2010, vc2010.elements.clCompile, cfg)
|
2013-04-25 20:05:08 +00:00
|
|
|
_p(2,'</ClCompile>')
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Write out the resource compiler block.
|
|
|
|
--
|
|
|
|
|
2013-04-30 16:38:11 +00:00
|
|
|
vc2010.elements.resourceCompile = {
|
|
|
|
"resourcePreprocessorDefinitions",
|
|
|
|
"resourceAdditionalIncludeDirectories",
|
|
|
|
}
|
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
function vc2010.resourceCompile(cfg)
|
2013-04-25 20:05:08 +00:00
|
|
|
if cfg.system ~= premake.XBOX360 then
|
2013-03-07 17:14:03 +00:00
|
|
|
_p(2,'<ResourceCompile>')
|
2013-04-30 16:38:11 +00:00
|
|
|
premake.callarray(vc2010, vc2010.elements.resourceCompile, cfg)
|
2013-03-07 17:14:03 +00:00
|
|
|
_p(2,'</ResourceCompile>')
|
|
|
|
end
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Write out the linker tool block.
|
|
|
|
--
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.link(cfg)
|
2013-04-25 20:05:08 +00:00
|
|
|
local explicit = vstudio.needsExplicitLink(cfg)
|
2012-08-01 19:28:21 +00:00
|
|
|
|
2013-04-25 20:05:08 +00:00
|
|
|
_p(2,'<Link>')
|
2012-08-01 19:28:21 +00:00
|
|
|
|
2013-04-25 20:05:08 +00:00
|
|
|
vc2010.subSystem(cfg)
|
|
|
|
vc2010.generateDebugInformation(cfg)
|
|
|
|
vc2010.optimizeReferences(cfg)
|
2012-08-01 19:28:21 +00:00
|
|
|
|
2013-04-25 20:05:08 +00:00
|
|
|
if cfg.kind ~= premake.STATICLIB then
|
|
|
|
vc2010.linkDynamic(cfg, explicit)
|
|
|
|
end
|
2012-08-01 19:28:21 +00:00
|
|
|
|
2013-04-25 20:05:08 +00:00
|
|
|
_p(2,'</Link>')
|
2012-08-01 19:28:21 +00:00
|
|
|
|
2013-04-25 20:05:08 +00:00
|
|
|
if cfg.kind == premake.STATICLIB then
|
|
|
|
vc2010.linkStatic(cfg)
|
2013-04-03 15:53:00 +00:00
|
|
|
end
|
2013-04-25 20:05:08 +00:00
|
|
|
|
|
|
|
vc2010.linkLibraryDependencies(cfg, explicit)
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.linkDynamic(cfg, explicit)
|
2012-11-30 19:05:19 +00:00
|
|
|
vc2010.additionalDependencies(cfg, explicit)
|
2012-08-01 19:28:21 +00:00
|
|
|
vc2010.additionalLibraryDirectories(cfg)
|
2013-02-11 18:25:33 +00:00
|
|
|
vc2010.importLibrary(cfg)
|
|
|
|
vc2010.entryPointSymbol(cfg)
|
2013-02-21 15:28:41 +00:00
|
|
|
vc2010.moduleDefinitionFile(cfg)
|
2012-08-01 19:28:21 +00:00
|
|
|
vc2010.additionalLinkOptions(cfg)
|
|
|
|
end
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.linkStatic(cfg)
|
2013-06-12 21:03:09 +00:00
|
|
|
if #cfg.linkoptions > 0 then
|
|
|
|
_p(2,'<Lib>')
|
|
|
|
vc2010.additionalLinkOptions(cfg)
|
|
|
|
_p(2,'</Lib>')
|
|
|
|
end
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Write out the pre- and post-build event settings.
|
|
|
|
--
|
|
|
|
|
|
|
|
function vc2010.buildEvents(cfg)
|
2013-01-12 16:52:59 +00:00
|
|
|
function write(group, list)
|
2012-08-01 19:28:21 +00:00
|
|
|
if #list > 0 then
|
|
|
|
_p(2,'<%s>', group)
|
|
|
|
_x(3,'<Command>%s</Command>', table.implode(list, "", "", "\r\n"))
|
|
|
|
_p(2,'</%s>', group)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
write("PreBuildEvent", cfg.prebuildcommands)
|
|
|
|
write("PreLinkEvent", cfg.prelinkcommands)
|
|
|
|
write("PostBuildEvent", cfg.postbuildcommands)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-03-04 16:45:27 +00:00
|
|
|
--
|
|
|
|
-- Reference any managed assemblies listed in the links()
|
|
|
|
--
|
|
|
|
|
|
|
|
function vc2010.assemblyReferences(prj)
|
2013-03-05 16:00:32 +00:00
|
|
|
-- Visual Studio doesn't support per-config references; use
|
|
|
|
-- whatever is contained in the first configuration
|
2013-03-04 16:45:27 +00:00
|
|
|
local cfg = project.getfirstconfig(prj)
|
2013-03-05 16:00:32 +00:00
|
|
|
|
2013-03-04 16:45:27 +00:00
|
|
|
local refs = config.getlinks(cfg, "system", "fullpath", "managed")
|
|
|
|
if #refs > 0 then
|
|
|
|
_p(1,'<ItemGroup>')
|
|
|
|
table.foreachi(refs, function(value)
|
2013-03-05 16:00:32 +00:00
|
|
|
|
|
|
|
-- If the link contains a '/' then it is a relative path to
|
|
|
|
-- a local assembly. Otherwise treat it as a system assembly.
|
|
|
|
if value:find('/', 1, true) then
|
|
|
|
_x(2,'<Reference Include="%s">', path.getbasename(value))
|
|
|
|
_x(3,'<HintPath>%s</HintPath>', path.translate(value))
|
|
|
|
_p(2,'</Reference>')
|
|
|
|
else
|
|
|
|
_x(2,'<Reference Include="%s" />', path.getbasename(value))
|
|
|
|
end
|
|
|
|
|
2013-03-04 16:45:27 +00:00
|
|
|
end)
|
|
|
|
_p(1,'</ItemGroup>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
--
|
|
|
|
-- Write out the list of source code files, and any associated configuration.
|
|
|
|
--
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.files(prj)
|
|
|
|
vc2010.simplefilesgroup(prj, "ClInclude")
|
|
|
|
vc2010.compilerfilesgroup(prj)
|
|
|
|
vc2010.simplefilesgroup(prj, "None")
|
|
|
|
vc2010.simplefilesgroup(prj, "ResourceCompile")
|
2012-08-01 19:28:21 +00:00
|
|
|
vc2010.customBuildFilesGroup(prj)
|
|
|
|
end
|
|
|
|
|
2013-03-12 23:26:25 +00:00
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.simplefilesgroup(prj, group)
|
|
|
|
local files = vc2010.getfilegroup(prj, group)
|
2012-08-01 19:28:21 +00:00
|
|
|
if #files > 0 then
|
|
|
|
_p(1,'<ItemGroup>')
|
|
|
|
for _, file in ipairs(files) do
|
|
|
|
_x(2,'<%s Include=\"%s\" />', group, path.translate(file.relpath))
|
|
|
|
end
|
|
|
|
_p(1,'</ItemGroup>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-12 23:26:25 +00:00
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.compilerfilesgroup(prj)
|
|
|
|
local files = vc2010.getfilegroup(prj, "ClCompile")
|
2012-08-01 19:28:21 +00:00
|
|
|
if #files > 0 then
|
|
|
|
_p(1,'<ItemGroup>')
|
|
|
|
for _, file in ipairs(files) do
|
|
|
|
_x(2,'<ClCompile Include=\"%s\">', path.translate(file.relpath))
|
|
|
|
for cfg in project.eachconfig(prj) do
|
|
|
|
local condition = vc2010.condition(cfg)
|
2013-01-12 16:52:59 +00:00
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
local filecfg = config.getfileconfig(cfg, file.abspath)
|
2013-03-12 23:26:25 +00:00
|
|
|
vc2010.excludedFromBuild(cfg, filecfg)
|
|
|
|
if filecfg then
|
|
|
|
vc2010.objectFileName(filecfg)
|
|
|
|
vc2010.forceIncludes(filecfg, condition)
|
|
|
|
vc2010.precompiledHeader(cfg, filecfg, condition)
|
|
|
|
vc2010.additionalCompileOptions(filecfg, condition)
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
2013-01-12 16:52:59 +00:00
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
_p(2,'</ClCompile>')
|
|
|
|
end
|
|
|
|
_p(1,'</ItemGroup>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-12 23:26:25 +00:00
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
function vc2010.customBuildFilesGroup(prj)
|
2013-02-11 18:25:33 +00:00
|
|
|
local files = vc2010.getfilegroup(prj, "CustomBuild")
|
2012-08-01 19:28:21 +00:00
|
|
|
if #files > 0 then
|
|
|
|
_p(1,'<ItemGroup>')
|
|
|
|
for _, file in ipairs(files) do
|
|
|
|
_x(2,'<CustomBuild Include=\"%s\">', path.translate(file.relpath))
|
|
|
|
_p(3,'<FileType>Document</FileType>')
|
2013-01-12 16:52:59 +00:00
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
for cfg in project.eachconfig(prj) do
|
2013-01-12 16:52:59 +00:00
|
|
|
local condition = vc2010.condition(cfg)
|
2012-08-01 19:28:21 +00:00
|
|
|
local filecfg = config.getfileconfig(cfg, file.abspath)
|
2013-04-09 19:12:04 +00:00
|
|
|
if config.hasCustomBuildRule(filecfg) then
|
|
|
|
local commands = table.concat(filecfg.buildcommands,'\r\n')
|
2012-08-01 19:28:21 +00:00
|
|
|
_p(3,'<Command %s>%s</Command>', condition, premake.esc(commands))
|
2013-01-12 16:52:59 +00:00
|
|
|
|
2013-04-17 15:54:07 +00:00
|
|
|
local outputs = project.getrelative(prj, filecfg.buildoutputs)
|
|
|
|
vc2010.element(3, "Outputs", condition, '%s', table.concat(outputs, " "))
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
end
|
2013-01-12 16:52:59 +00:00
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
_p(2,'</CustomBuild>')
|
|
|
|
end
|
|
|
|
_p(1,'</ItemGroup>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-03-12 23:26:25 +00:00
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.getfilegroup(prj, group)
|
2012-08-01 19:28:21 +00:00
|
|
|
-- check for a cached copy before creating
|
|
|
|
local groups = prj.vc2010_file_groups
|
|
|
|
if not groups then
|
|
|
|
groups = {
|
|
|
|
ClCompile = {},
|
|
|
|
ClInclude = {},
|
|
|
|
None = {},
|
|
|
|
ResourceCompile = {},
|
|
|
|
CustomBuild = {},
|
|
|
|
}
|
|
|
|
prj.vc2010_file_groups = groups
|
2013-01-12 16:52:59 +00:00
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
local tr = project.getsourcetree(prj)
|
|
|
|
tree.traverse(tr, {
|
|
|
|
onleaf = function(node)
|
|
|
|
-- if any configuration of this file uses a custom build rule,
|
|
|
|
-- then they all must be marked as custom build
|
|
|
|
local hasbuildrule = false
|
2013-01-12 16:52:59 +00:00
|
|
|
for cfg in project.eachconfig(prj) do
|
2012-08-01 19:28:21 +00:00
|
|
|
local filecfg = config.getfileconfig(cfg, node.abspath)
|
2013-04-09 19:12:04 +00:00
|
|
|
if config.hasCustomBuildRule(filecfg) then
|
2012-08-01 19:28:21 +00:00
|
|
|
hasbuildrule = true
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
2013-01-12 16:52:59 +00:00
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
if hasbuildrule then
|
|
|
|
table.insert(groups.CustomBuild, node)
|
|
|
|
elseif path.iscppfile(node.name) then
|
|
|
|
table.insert(groups.ClCompile, node)
|
|
|
|
elseif path.iscppheader(node.name) then
|
|
|
|
table.insert(groups.ClInclude, node)
|
|
|
|
elseif path.isresourcefile(node.name) then
|
|
|
|
table.insert(groups.ResourceCompile, node)
|
|
|
|
else
|
|
|
|
table.insert(groups.None, node)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
return groups[group]
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Generate the list of project dependencies.
|
|
|
|
--
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.projectReferences(prj)
|
2012-08-01 19:28:21 +00:00
|
|
|
local deps = project.getdependencies(prj)
|
|
|
|
if #deps > 0 then
|
|
|
|
local prjpath = project.getlocation(prj)
|
2013-01-12 16:52:59 +00:00
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
_p(1,'<ItemGroup>')
|
|
|
|
for _, dep in ipairs(deps) do
|
2012-09-25 14:20:14 +00:00
|
|
|
local relpath = path.getrelative(prjpath, vstudio.projectfile(dep))
|
2012-08-01 19:28:21 +00:00
|
|
|
_x(2,'<ProjectReference Include=\"%s\">', path.translate(relpath))
|
|
|
|
_p(3,'<Project>{%s}</Project>', dep.uuid)
|
|
|
|
_p(2,'</ProjectReference>')
|
|
|
|
end
|
|
|
|
_p(1,'</ItemGroup>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
|
2013-03-07 17:14:03 +00:00
|
|
|
---------------------------------------------------------------------------
|
2013-02-11 18:25:33 +00:00
|
|
|
--
|
2013-03-07 17:14:03 +00:00
|
|
|
-- Handlers for individual project elements
|
2012-08-01 19:28:21 +00:00
|
|
|
--
|
2013-03-07 17:14:03 +00:00
|
|
|
---------------------------------------------------------------------------
|
2012-08-01 19:28:21 +00:00
|
|
|
|
2012-11-30 19:05:19 +00:00
|
|
|
function vc2010.additionalDependencies(cfg, explicit)
|
2012-08-01 19:28:21 +00:00
|
|
|
local links
|
2012-11-30 19:05:19 +00:00
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
-- check to see if this project uses an external toolset. If so, let the
|
|
|
|
-- toolset define the format of the links
|
|
|
|
local toolset = premake.vstudio.vc200x.toolset(cfg)
|
|
|
|
if toolset then
|
2012-11-30 19:05:19 +00:00
|
|
|
links = toolset.getlinks(cfg, not explicit)
|
2012-08-01 19:28:21 +00:00
|
|
|
else
|
2012-11-30 19:05:19 +00:00
|
|
|
local scope = iif(explicit, "all", "system")
|
|
|
|
links = config.getlinks(cfg, scope, "fullpath")
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
2013-01-12 16:52:59 +00:00
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
if #links > 0 then
|
|
|
|
links = path.translate(table.concat(links, ";"))
|
|
|
|
_x(3,'<AdditionalDependencies>%s;%%(AdditionalDependencies)</AdditionalDependencies>', links)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.additionalIncludeDirectories(cfg, includedirs)
|
|
|
|
if #includedirs > 0 then
|
|
|
|
local dirs = project.getrelative(cfg.project, includedirs)
|
|
|
|
dirs = path.translate(table.concat(dirs, ";"))
|
|
|
|
_x(3,'<AdditionalIncludeDirectories>%s;%%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>', dirs)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.additionalLibraryDirectories(cfg)
|
|
|
|
if #cfg.libdirs > 0 then
|
|
|
|
local dirs = project.getrelative(cfg.project, cfg.libdirs)
|
|
|
|
dirs = path.translate(table.concat(dirs, ";"))
|
|
|
|
_x(3,'<AdditionalLibraryDirectories>%s;%%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>', dirs)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-03-12 23:26:25 +00:00
|
|
|
function vc2010.additionalCompileOptions(cfg, condition)
|
|
|
|
if #cfg.buildoptions > 0 then
|
|
|
|
local opts = table.concat(cfg.buildoptions, " ")
|
|
|
|
vc2010.element(3, "AdditionalOptions", condition, '%s %%(AdditionalOptions)', opts)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-04-03 15:53:00 +00:00
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
function vc2010.additionalLinkOptions(cfg)
|
|
|
|
if #cfg.linkoptions > 0 then
|
|
|
|
local opts = table.concat(cfg.linkoptions, " ")
|
|
|
|
_x(3, '<AdditionalOptions>%s %%(AdditionalOptions)</AdditionalOptions>', opts)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.basicRuntimeChecks(cfg)
|
|
|
|
if cfg.flags.NoRuntimeChecks then
|
|
|
|
_p(3,'<BasicRuntimeChecks>Default</BasicRuntimeChecks>')
|
|
|
|
end
|
|
|
|
end
|
2012-08-01 19:28:21 +00:00
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
|
|
|
|
function vc2010.characterSet(cfg)
|
2013-06-26 11:28:57 +00:00
|
|
|
if not vstudio.isMakefile(cfg) then
|
2013-04-03 15:53:00 +00:00
|
|
|
_p(2,'<CharacterSet>%s</CharacterSet>', iif(cfg.flags.Unicode, "Unicode", "MultiByte"))
|
|
|
|
end
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-04-30 16:38:11 +00:00
|
|
|
function vc2010.clCompileAdditionalIncludeDirectories(cfg)
|
|
|
|
vc2010.additionalIncludeDirectories(cfg, cfg.includedirs)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.clCompilePreprocessorDefinitions(cfg)
|
|
|
|
vc2010.preprocessorDefinitions(cfg, cfg.defines, false)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.clrSupport(cfg)
|
|
|
|
if cfg.flags.Managed then
|
|
|
|
_p(2,'<CLRSupport>true</CLRSupport>')
|
|
|
|
end
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.compileAs(cfg)
|
|
|
|
if cfg.project.language == "C" then
|
|
|
|
_p(3,'<CompileAs>CompileAsC</CompileAs>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.configurationType(cfg)
|
2013-04-03 15:53:00 +00:00
|
|
|
local types = {
|
|
|
|
SharedLib = "DynamicLibrary",
|
|
|
|
StaticLib = "StaticLibrary",
|
|
|
|
ConsoleApp = "Application",
|
|
|
|
WindowedApp = "Application",
|
|
|
|
Makefile = "Makefile",
|
2013-06-25 14:15:39 +00:00
|
|
|
None = "Makefile",
|
2013-04-03 15:53:00 +00:00
|
|
|
}
|
|
|
|
_p(2,'<ConfigurationType>%s</ConfigurationType>', types[cfg.kind])
|
2013-02-11 18:25:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.debugInformationFormat(cfg)
|
2012-08-01 19:28:21 +00:00
|
|
|
local value
|
|
|
|
if cfg.flags.Symbols then
|
|
|
|
if cfg.debugformat == "c7" then
|
|
|
|
value = "OldStyle"
|
2013-01-12 16:52:59 +00:00
|
|
|
elseif cfg.architecture == "x64" or
|
|
|
|
cfg.flags.Managed or
|
|
|
|
premake.config.isoptimizedbuild(cfg) or
|
2012-08-01 19:28:21 +00:00
|
|
|
cfg.flags.NoEditAndContinue
|
|
|
|
then
|
|
|
|
value = "ProgramDatabase"
|
|
|
|
else
|
|
|
|
value = "EditAndContinue"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
if value then
|
|
|
|
_p(3,'<DebugInformationFormat>%s</DebugInformationFormat>', value)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-03-07 17:14:03 +00:00
|
|
|
function vc2010.deploy(cfg)
|
|
|
|
if cfg.system == premake.XBOX360 then
|
|
|
|
_p(2,'<Deploy>')
|
|
|
|
_p(3,'<DeploymentType>CopyToHardDrive</DeploymentType>')
|
|
|
|
_p(3,'<DvdEmulationType>ZeroSeekTimes</DvdEmulationType>')
|
|
|
|
_p(3,'<DeploymentFiles>$(RemoteRoot)=$(ImagePath);</DeploymentFiles>')
|
|
|
|
_p(2,'</Deploy>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.enableEnhancedInstructionSet(cfg)
|
|
|
|
if cfg.flags.EnableSSE2 then
|
|
|
|
_p(3,'<EnableEnhancedInstructionSet>StreamingSIMDExtensions2</EnableEnhancedInstructionSet>')
|
|
|
|
elseif cfg.flags.EnableSSE then
|
|
|
|
_p(3,'<EnableEnhancedInstructionSet>StreamingSIMDExtensions</EnableEnhancedInstructionSet>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.entryPointSymbol(cfg)
|
2013-04-03 15:53:00 +00:00
|
|
|
if (cfg.kind == premake.CONSOLEAPP or cfg.kind == premake.WINDOWEDAPP) and
|
2013-03-07 17:14:03 +00:00
|
|
|
not cfg.flags.WinMain and
|
|
|
|
not cfg.flags.Managed and
|
|
|
|
cfg.system ~= premake.XBOX360
|
|
|
|
then
|
2013-02-11 18:25:33 +00:00
|
|
|
_p(3,'<EntryPointSymbol>mainCRTStartup</EntryPointSymbol>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.exceptionHandling(cfg)
|
|
|
|
if cfg.flags.NoExceptions then
|
|
|
|
_p(3,'<ExceptionHandling>false</ExceptionHandling>')
|
|
|
|
elseif cfg.flags.SEH then
|
|
|
|
_p(3,'<ExceptionHandling>Async</ExceptionHandling>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-03-12 23:26:25 +00:00
|
|
|
function vc2010.excludedFromBuild(cfg, filecfg)
|
|
|
|
if not filecfg or filecfg.flags.ExcludeFromBuild then
|
|
|
|
_p(3,'<ExcludedFromBuild %s>true</ExcludedFromBuild>', vc2010.condition(cfg))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.floatingPointModel(cfg)
|
|
|
|
if cfg.flags.FloatFast then
|
|
|
|
_p(3,'<FloatingPointModel>Fast</FloatingPointModel>')
|
|
|
|
elseif cfg.flags.FloatStrict and not cfg.flags.Managed then
|
|
|
|
_p(3,'<FloatingPointModel>Strict</FloatingPointModel>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-03-12 23:26:25 +00:00
|
|
|
function vc2010.forceIncludes(cfg, condition)
|
2013-02-11 18:25:33 +00:00
|
|
|
if #cfg.forceincludes > 0 then
|
2013-03-12 23:26:25 +00:00
|
|
|
local includes = path.translate(project.getrelative(cfg.project, cfg.forceincludes))
|
|
|
|
vc2010.element(3, "ForcedIncludeFiles", condition, table.concat(includes, ';'))
|
2013-02-11 18:25:33 +00:00
|
|
|
end
|
2013-02-20 14:57:37 +00:00
|
|
|
if #cfg.forceusings > 0 then
|
2013-03-12 23:26:25 +00:00
|
|
|
local usings = path.translate(project.getrelative(cfg.project, cfg.forceusings))
|
2013-02-20 14:57:37 +00:00
|
|
|
_x(3,'<ForcedUsingFiles>%s</ForcedUsingFiles>', table.concat(usings, ';'))
|
|
|
|
end
|
2013-02-11 18:25:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.functionLevelLinking(cfg)
|
|
|
|
if premake.config.isoptimizedbuild(cfg) then
|
|
|
|
_p(3,'<FunctionLevelLinking>true</FunctionLevelLinking>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.generateDebugInformation(cfg)
|
|
|
|
_p(3,'<GenerateDebugInformation>%s</GenerateDebugInformation>', tostring(cfg.flags.Symbols ~= nil))
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.generateManifest(cfg)
|
|
|
|
if cfg.flags.NoManifest then
|
|
|
|
_p(2,'<GenerateManifest>false</GenerateManifest>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.ignoreImportLibrary(cfg)
|
|
|
|
if cfg.kind == premake.SHAREDLIB and cfg.flags.NoImportLib then
|
|
|
|
_p(2,'<IgnoreImportLibrary>true</IgnoreImportLibrary>');
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-03-07 17:14:03 +00:00
|
|
|
function vc2010.imageXex(cfg)
|
|
|
|
if cfg.system == premake.XBOX360 then
|
|
|
|
_p(2,'<ImageXex>')
|
|
|
|
_p(3,'<ConfigurationFile>')
|
|
|
|
_p(3,'</ConfigurationFile>')
|
|
|
|
_p(3,'<AdditionalSections>')
|
|
|
|
_p(3,'</AdditionalSections>')
|
|
|
|
_p(2,'</ImageXex>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.imageXexOutput(cfg)
|
|
|
|
if cfg.system == premake.XBOX360 then
|
|
|
|
_x(2,'<ImageXexOutput>$(OutDir)$(TargetName).xex</ImageXexOutput>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.import(prj)
|
|
|
|
_p(1,'<Import Project="$(VCTargetsPath)\\Microsoft.Cpp.targets" />')
|
|
|
|
_p(1,'<ImportGroup Label="ExtensionTargets">')
|
|
|
|
_p(1,'</ImportGroup>')
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.importLibrary(cfg)
|
|
|
|
if cfg.kind == premake.SHAREDLIB then
|
|
|
|
_x(3,'<ImportLibrary>%s</ImportLibrary>', path.translate(cfg.linktarget.relpath))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.intDir(cfg)
|
|
|
|
local objdir = project.getrelative(cfg.project, cfg.objdir)
|
|
|
|
_x(2,'<IntDir>%s\\</IntDir>', path.translate(objdir))
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.intrinsicFunctions(cfg)
|
|
|
|
if premake.config.isoptimizedbuild(cfg) then
|
|
|
|
_p(3,'<IntrinsicFunctions>true</IntrinsicFunctions>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.linkIncremental(cfg)
|
|
|
|
if cfg.kind ~= premake.STATICLIB then
|
|
|
|
_p(2,'<LinkIncremental>%s</LinkIncremental>', tostring(premake.config.canincrementallink(cfg)))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.linkLibraryDependencies(cfg, explicit)
|
|
|
|
-- Left to its own devices, VS will happily link against a project dependency
|
|
|
|
-- that has been excluded from the build. As a workaround, disable dependency
|
|
|
|
-- linking and list all siblings explicitly
|
|
|
|
if explicit then
|
|
|
|
_p(2,'<ProjectReference>')
|
|
|
|
_p(3,'<LinkLibraryDependencies>false</LinkLibraryDependencies>')
|
|
|
|
_p(2,'</ProjectReference>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.minimalRebuild(cfg)
|
|
|
|
if premake.config.isoptimizedbuild(cfg) or
|
|
|
|
cfg.flags.NoMinimalRebuild or
|
|
|
|
cfg.flags.MultiProcessorCompile or
|
|
|
|
cfg.debugformat == premake.C7
|
|
|
|
then
|
|
|
|
_p(3,'<MinimalRebuild>false</MinimalRebuild>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-21 15:28:41 +00:00
|
|
|
function vc2010.moduleDefinitionFile(cfg)
|
|
|
|
local df = config.findfile(cfg, ".def")
|
|
|
|
if df then
|
|
|
|
_p(3,'<ModuleDefinitionFile>%s</ModuleDefinitionFile>', df)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.multiProcessorCompilation(cfg)
|
|
|
|
if cfg.flags.MultiProcessorCompile then
|
|
|
|
_p(3,'<MultiProcessorCompilation>true</MultiProcessorCompilation>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-04-07 18:30:58 +00:00
|
|
|
function vc2010.nmakeCommandLine(cfg, commands, phase)
|
|
|
|
if #commands > 0 then
|
|
|
|
commands = table.concat(premake.esc(commands), io.eol)
|
|
|
|
_p(2, '<NMake%sCommandLine>%s</NMake%sCommandLine>', phase, commands, phase)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-04-25 15:45:44 +00:00
|
|
|
function vc2010.nmakeOutDirs(cfg)
|
2013-06-26 11:28:57 +00:00
|
|
|
if vstudio.isMakefile(cfg) then
|
2013-04-25 15:45:44 +00:00
|
|
|
vc2010.outDir(cfg)
|
|
|
|
vc2010.intDir(cfg)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-04-03 15:53:00 +00:00
|
|
|
function vc2010.nmakeOutput(cfg)
|
|
|
|
_p(2,'<NMakeOutput>$(OutDir)%s</NMakeOutput>', cfg.buildtarget.name)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-03-12 23:26:25 +00:00
|
|
|
function vc2010.objectFileName(filecfg)
|
2013-07-07 20:48:17 +00:00
|
|
|
if filecfg.objname ~= filecfg.basename then
|
2013-06-21 21:32:33 +00:00
|
|
|
_p(3,'<ObjectFileName %s>$(IntDir)\\%s.obj</ObjectFileName>', vc2010.condition(filecfg.config), filecfg.objname)
|
2013-03-12 23:26:25 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.omitFramePointers(cfg)
|
|
|
|
if cfg.flags.NoFramePointer then
|
|
|
|
_p(3,'<OmitFramePointers>true</OmitFramePointers>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.optimizeReferences(cfg)
|
|
|
|
if premake.config.isoptimizedbuild(cfg) then
|
|
|
|
_p(3,'<EnableCOMDATFolding>true</EnableCOMDATFolding>')
|
|
|
|
_p(3,'<OptimizeReferences>true</OptimizeReferences>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
|
|
|
|
function vc2010.optimization(cfg)
|
|
|
|
local result = "Disabled"
|
|
|
|
for _, flag in ipairs(cfg.flags) do
|
|
|
|
if flag == "Optimize" then
|
|
|
|
result = "Full"
|
|
|
|
elseif flag == "OptimizeSize" then
|
|
|
|
result = "MinSpace"
|
|
|
|
elseif flag == "OptimizeSpeed" then
|
|
|
|
result = "MaxSpeed"
|
|
|
|
end
|
|
|
|
end
|
2013-02-11 18:25:33 +00:00
|
|
|
_p(3,'<Optimization>%s</Optimization>', result)
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.outDir(cfg)
|
|
|
|
local outdir = project.getrelative(cfg.project, cfg.buildtarget.directory)
|
|
|
|
_x(2,'<OutDir>%s\\</OutDir>', path.translate(outdir))
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.outputFile(cfg)
|
|
|
|
if cfg.system == premake.XBOX360 then
|
2013-04-03 15:53:00 +00:00
|
|
|
_p(2,'<OutputFile>$(OutDir)%s</OutputFile>', cfg.buildtarget.name)
|
2013-02-11 18:25:33 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-03-12 23:26:25 +00:00
|
|
|
function vc2010.precompiledHeader(cfg, filecfg, condition)
|
|
|
|
if filecfg then
|
|
|
|
if cfg.pchsource == filecfg.abspath and not cfg.flags.NoPCH then
|
|
|
|
vc2010.element(3, 'PrecompiledHeader', condition, 'Create')
|
|
|
|
end
|
2013-02-11 18:25:33 +00:00
|
|
|
else
|
2013-03-12 23:26:25 +00:00
|
|
|
if not cfg.flags.NoPCH and cfg.pchheader then
|
|
|
|
_p(3,'<PrecompiledHeader>Use</PrecompiledHeader>')
|
|
|
|
_x(3,'<PrecompiledHeaderFile>%s</PrecompiledHeaderFile>', path.getname(cfg.pchheader))
|
|
|
|
else
|
|
|
|
_p(3,'<PrecompiledHeader>NotUsing</PrecompiledHeader>')
|
|
|
|
end
|
2013-02-11 18:25:33 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-08-01 19:28:21 +00:00
|
|
|
|
2013-04-30 16:25:25 +00:00
|
|
|
function vc2010.preprocessorDefinitions(cfg, defines, escapeQuotes)
|
2012-08-01 19:28:21 +00:00
|
|
|
if #defines > 0 then
|
|
|
|
defines = table.concat(defines, ";")
|
2013-04-30 16:25:25 +00:00
|
|
|
if escapeQuotes then
|
|
|
|
defines = defines:gsub('"', '\\"')
|
|
|
|
end
|
2012-08-01 19:28:21 +00:00
|
|
|
_x(3,'<PreprocessorDefinitions>%s;%%(PreprocessorDefinitions)</PreprocessorDefinitions>', defines)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.programDataBaseFileName(cfg)
|
|
|
|
if cfg.flags.Symbols and cfg.debugformat ~= "c7" then
|
|
|
|
local filename = cfg.buildtarget.basename
|
|
|
|
_p(3,'<ProgramDataBaseFileName>$(OutDir)%s.pdb</ProgramDataBaseFileName>', filename)
|
|
|
|
end
|
|
|
|
end
|
2012-08-01 19:28:21 +00:00
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
|
|
|
|
function vc2010.projectGuid(prj)
|
|
|
|
_p(2,'<ProjectGuid>{%s}</ProjectGuid>', prj.uuid)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-05-01 16:08:41 +00:00
|
|
|
function vc2010.projectName(prj)
|
|
|
|
if prj.name ~= prj.filename then
|
|
|
|
_x(2,'<ProjectName>%s</ProjectName>', prj.name)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.propertyGroup(cfg, label)
|
|
|
|
local cond
|
|
|
|
if cfg then
|
|
|
|
cond = string.format(' %s', vc2010.condition(cfg))
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
2013-02-11 18:25:33 +00:00
|
|
|
|
|
|
|
if label then
|
|
|
|
label = string.format(' Label="%s"', label)
|
|
|
|
end
|
|
|
|
|
|
|
|
_p(1,'<PropertyGroup%s%s>', cond or "", label or "")
|
2012-12-11 16:17:43 +00:00
|
|
|
end
|
2012-08-01 19:28:21 +00:00
|
|
|
|
|
|
|
|
2013-04-30 16:38:11 +00:00
|
|
|
function vc2010.resourceAdditionalIncludeDirectories(cfg)
|
|
|
|
vc2010.additionalIncludeDirectories(cfg, table.join(cfg.includedirs, cfg.resincludedirs))
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.resourcePreprocessorDefinitions(cfg)
|
|
|
|
vc2010.preprocessorDefinitions(cfg, table.join(cfg.defines, cfg.resdefines), true)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.runtimeLibrary(cfg)
|
2013-03-27 15:12:37 +00:00
|
|
|
local runtimes = {
|
|
|
|
StaticDebug = "MultiThreadedDebug",
|
|
|
|
StaticRelease = "MultiThreaded",
|
|
|
|
}
|
|
|
|
local runtime = runtimes[config.getruntime(cfg)]
|
|
|
|
if runtime then
|
|
|
|
_p(3,'<RuntimeLibrary>%s</RuntimeLibrary>', runtime)
|
2013-02-08 15:35:14 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.runtimeTypeInfo(cfg)
|
|
|
|
if cfg.flags.NoRTTI and not cfg.flags.Managed then
|
|
|
|
_p(3,'<RuntimeTypeInfo>false</RuntimeTypeInfo>')
|
2013-02-08 15:35:14 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.stringPooling(cfg)
|
|
|
|
if premake.config.isoptimizedbuild(cfg) then
|
|
|
|
_p(3,'<StringPooling>true</StringPooling>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.subSystem(cfg)
|
2013-03-07 17:14:03 +00:00
|
|
|
if cfg.system ~= premake.XBOX360 then
|
|
|
|
local subsystem = iif(cfg.kind == premake.CONSOLEAPP, "Console", "Windows")
|
|
|
|
_p(3,'<SubSystem>%s</SubSystem>', subsystem)
|
|
|
|
end
|
2013-02-11 18:25:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.targetExt(cfg)
|
2013-05-22 13:06:33 +00:00
|
|
|
local ext = cfg.buildtarget.extension
|
|
|
|
if ext ~= "" then
|
|
|
|
_x(2,'<TargetExt>%s</TargetExt>', ext)
|
|
|
|
else
|
|
|
|
_p(2,'<TargetExt>')
|
|
|
|
_p(2,'</TargetExt>')
|
|
|
|
end
|
2013-02-11 18:25:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.targetName(cfg)
|
|
|
|
_x(2,'<TargetName>%s%s</TargetName>', cfg.buildtarget.prefix, cfg.buildtarget.basename)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.treatWChar_tAsBuiltInType(cfg)
|
|
|
|
if cfg.flags.NativeWChar then
|
|
|
|
_p(3,'<TreatWChar_tAsBuiltInType>true</TreatWChar_tAsBuiltInType>')
|
|
|
|
elseif cfg.flags.NoNativeWChar then
|
|
|
|
_p(3,'<TreatWChar_tAsBuiltInType>false</TreatWChar_tAsBuiltInType>')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.treatWarningAsError(cfg)
|
2012-12-11 16:17:43 +00:00
|
|
|
if cfg.flags.FatalWarnings and not cfg.flags.NoWarnings then
|
2012-08-01 19:28:21 +00:00
|
|
|
_p(3,'<TreatWarningAsError>true</TreatWarningAsError>')
|
2013-01-12 16:52:59 +00:00
|
|
|
end
|
2012-12-11 16:17:43 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2013-02-11 18:25:33 +00:00
|
|
|
function vc2010.useDebugLibraries(cfg)
|
2013-03-27 15:12:37 +00:00
|
|
|
local runtime = config.getruntime(cfg)
|
|
|
|
_p(2,'<UseDebugLibraries>%s</UseDebugLibraries>', tostring(runtime:endswith("Debug")))
|
2013-02-11 18:25:33 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.useOfMfc(cfg)
|
|
|
|
if cfg.flags.MFC then
|
|
|
|
_p(2,'<UseOfMfc>%s</UseOfMfc>', iif(cfg.flags.StaticRuntime, "Static", "Dynamic"))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
function vc2010.warningLevel(cfg)
|
2012-12-11 16:17:43 +00:00
|
|
|
local w = 3
|
|
|
|
if cfg.flags.NoWarnings then
|
|
|
|
w = 0
|
|
|
|
elseif cfg.flags.ExtraWarnings then
|
|
|
|
w = 4
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
2012-12-11 16:17:43 +00:00
|
|
|
_p(3,'<WarningLevel>Level%d</WarningLevel>', w)
|
2012-08-01 19:28:21 +00:00
|
|
|
end
|
2013-03-12 23:26:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
--
|
|
|
|
-- Support functions
|
|
|
|
--
|
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Format and return a Visual Studio Condition attribute.
|
|
|
|
--
|
|
|
|
|
|
|
|
function vc2010.condition(cfg)
|
|
|
|
return string.format('Condition="\'$(Configuration)|$(Platform)\'==\'%s\'"', premake.esc(vstudio.projectConfig(cfg)))
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
--
|
|
|
|
-- Output an individual project XML element, with an optional configuration
|
|
|
|
-- condition.
|
|
|
|
--
|
|
|
|
-- @param depth
|
|
|
|
-- How much to indent the element.
|
|
|
|
-- @param name
|
|
|
|
-- The element name.
|
|
|
|
-- @param condition
|
|
|
|
-- An optional configuration condition, formatted with vc2010.condition().
|
|
|
|
-- @param value
|
|
|
|
-- The element value, which may contain printf formatting tokens.
|
|
|
|
-- @param ...
|
|
|
|
-- Optional additional arguments to satisfy any tokens in the value.
|
|
|
|
--
|
|
|
|
|
|
|
|
function vc2010.element(depth, name, condition, value, ...)
|
|
|
|
if select('#',...) == 0 then
|
|
|
|
value = premake.esc(value)
|
|
|
|
end
|
|
|
|
|
|
|
|
local format
|
|
|
|
if condition then
|
|
|
|
format = string.format('<%s %s>%s</%s>', name, condition, value, name)
|
|
|
|
else
|
|
|
|
format = string.format('<%s>%s</%s>', name, value, name)
|
|
|
|
end
|
|
|
|
|
|
|
|
_x(depth, format, ...)
|
|
|
|
end
|