-- -- tests/actions/vstudio/vc2010/test_project_configs.lua -- Test the Visual Studio 2010 project configurations item group. -- Copyright (c) 2009-2012 Jason Perkins and the Premake project -- T.vstudio_vc2010_project_configs = { } local suite = T.vstudio_vc2010_project_configs local vc2010 = premake.vstudio.vc2010 -- -- Setup -- local sln, prj function suite.setup() _ACTION = "vs2010" sln = test.createsolution() end local function prepare() prj = premake.solution.getproject_ng(sln, 1) vc2010.projectConfigurations(prj) end -- -- If no architectures are specified, Win32 should be the default. -- function suite.win32Listed_onNoPlatforms() prepare() test.capture [[ Debug Win32 Release Win32 ]] end -- -- Visual Studio requires that all combinations of configurations and -- architectures be listed (even if some pairings would make no sense -- for our build, i.e. Win32 DLL DCRT|PS3). -- function suite.allArchitecturesListed_onMultipleArchitectures() platforms { "32b", "64b" } configuration "32b" architecture "x32" configuration "64b" architecture "x64" prepare() test.capture [[ Debug 32b Win32 Debug 32b x64 Debug 64b Win32 Debug 64b x64 ]] end -- -- Sometimes unrolling the configuration-architecture combinations -- can cause duplicates. Make sure those get removed. -- function suite.allArchitecturesListed_onImplicitArchitectures() platforms { "x32", "x64" } prepare() test.capture [[ Debug Win32 Debug x64 ]] end