68 lines
1.4 KiB
Lua
68 lines
1.4 KiB
Lua
--
|
|
-- tests/actions/vstudio/cs2005/test_output_props.lua
|
|
-- Test the target output settings of a Visual Studio 2005+ C# project.
|
|
-- Copyright (c) 2012 Jason Perkins and the Premake project
|
|
--
|
|
|
|
T.vstudio_cs2005_output_props = {}
|
|
local suite = T.vstudio_cs2005_output_props
|
|
local cs2005 = premake.vstudio.cs2005
|
|
local project = premake5.project
|
|
|
|
|
|
--
|
|
-- Setup and teardown
|
|
--
|
|
|
|
local sln
|
|
|
|
function suite.setup()
|
|
_ACTION = "vs2005"
|
|
sln = test.createsolution()
|
|
language "C#"
|
|
end
|
|
|
|
local function prepare()
|
|
local prj = premake.solution.getproject_ng(sln, 1)
|
|
local cfg = project.getconfig(prj, "Debug")
|
|
cs2005.outputProps(cfg)
|
|
end
|
|
|
|
|
|
--
|
|
-- Check handling of the output directory.
|
|
--
|
|
|
|
function suite.outputDirectory_onTargetDir()
|
|
targetdir "../build"
|
|
prepare()
|
|
test.capture [[
|
|
<OutputPath>..\build\</OutputPath>
|
|
]]
|
|
end
|
|
|
|
|
|
--
|
|
-- Check handling of the intermediates directory.
|
|
--
|
|
|
|
function suite.intermediateDirectory_onVs2008()
|
|
_ACTION = "vs2008"
|
|
prepare()
|
|
test.capture [[
|
|
<OutputPath>.\</OutputPath>
|
|
<IntermediateOutputPath>obj\Debug\</IntermediateOutputPath>
|
|
]]
|
|
end
|
|
|
|
function suite.intermediateDirectory_onVs2010()
|
|
_ACTION = "vs2010"
|
|
prepare()
|
|
test.capture [[
|
|
<OutputPath>.\</OutputPath>
|
|
<BaseIntermediateOutputPath>obj\Debug\</BaseIntermediateOutputPath>
|
|
<IntermediateOutputPath>$(BaseIntermediateOutputPath)</IntermediateOutputPath>
|
|
]]
|
|
end
|
|
|